From: Elliott Oti Newsgroups: comp.os.msdos.djgpp Subject: Re: New C Programmer Problem Date: Sun, 22 Dec 1996 22:44:34 -0800 Organization: Academic Computer Centre Utrecht, (ACCU) Lines: 16 Message-ID: <32BE2A52.7D87@stud.warande.ruu.nl> References: <32BE2E9B DOT 5DB3 AT bc DOT cybernex DOT net> NNTP-Posting-Host: warande1078.warande.ruu.nl Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Gregg Foti wrote: > > C:\DJGPP>type exam.c > #include << =========== should be #include > main ( ) > { > printf("merry christmas to all" ); > } It makes a difference in C whether you use caps or small type. C compilers are type-sensitive. STDIO.H is not the same as stdio.h. The compiler only recognizes stdio.h, NOT StdIo.h or stdio.H or STDIO.h or whatever. Merry christmas, E