Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!rutgers!ucla-cs!zen!cory.Berkeley.EDU!schung From: schung@cory.Berkeley.EDU (Stephen the Greatest) Newsgroups: comp.lang.c Subject: Re: 2 questions (Turbo C) Message-ID: <3432@zen.berkeley.edu> Date: Fri, 28-Aug-87 12:37:37 EDT Article-I.D.: zen.3432 Posted: Fri Aug 28 12:37:37 1987 Date-Received: Sun, 30-Aug-87 01:38:00 EDT References: <9034@brl-adm.ARPA> Sender: news@zen.berkeley.edu Reply-To: schung@cory.Berkeley.EDU.UUCP (Stephen the Greatest) Organization: University of California, Berkeley Lines: 13 In article <9034@brl-adm.ARPA> bonak%cs.uiowa.edu@RELAY.CS.NET (Esmail Bonakdarian) writes: > if ( (infile = fopen("c:\temp\helpfile", "r")) == NULL ) > ... Read the manual. Classic error: \t = tab, not '\''t', and \h = god knows what. Fix: if ( (infile = fopen("c:\\temp\\helpfile", "r")) == NULL) Hope this helps. This common error is forewarned in the manual. - Stephen