Re: Help with simple C program
Re: Help with simple C program
- Subject: Re: Help with simple C program
- From: Fritz Anderson <email@hidden>
- Date: Sat, 4 Sep 2004 18:46:06 -0500
On 4 Sep 2004, at 5:54 PM, Isaac Rivera wrote:
c == getc(in);
This is the naked test for whether getc(in) equals c. It does not
change c. You mean
c = getc(in);
-- F
_______________________________________________
xcode-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/xcode-users
Do not post admin requests to the list. They will be ignored.