From: "Grigoriy Strokin" Newsgroups: comp.os.msdos.djgpp References: <01bd10b8$85d81640$893b37a6 AT jim> Subject: Re: Silly Elementary Question Date: Thu, 25 Dec 1997 19:28:59 +0300 Lines: 16 NNTP-Posting-Host: isabase.philol.msu.ru Message-ID: <34a289ce.0@boy.nmd.msu.ru> To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk >I tried to include stdio.h two ways; like this: > > #include > >and like this: > > include "d:\djgpp\include\stdio.h" > >and neither will work. The stdio.h file does exist -- what am I doing When specifying the full path to stdio, you whould use "\\" or "/" instead of "\", because a single slach stands for various escape sequences.