Results 1 to 3 of 3
c programmers magazine
subscribe here and post a c program,
its worth subscribing to if you just li-
ke to get an occasionally useful c pr -
orgram in the ...
- 03-11-2009 #1
C Programmers Magazine
c programmers magazine
subscribe here and post a c program,
its worth subscribing to if you just li-
ke to get an occasionally useful c pr-
orgram in the mail here or there or li-
ke to contribute sometimes when you
think up something small and useful.
Mailing list options (more info)
- Click "Options > Subscribe via email" to subscribe to this mailing list;
- Click "Options > Post by email..." to get the email address of this mailing list;
- You can post messages via email or through the forum interface below;
- All web posts and emails are archived here.
Nabble - c programmers magazine forum
I could use some friends if anyone wants to try out c programmers magazine.
- 03-11-2009 #2
couple of feedback(though it's negative) from me , which will help your magazineCode:#include <stdio.h> void main() { File *fopen(), *fp; int c; fp = fopen("filename.txt","r"); c = getc(fp); while (c != EOF) {putchar(c); c = getc(fp); } fclose(fp); }
I tried your program,It throws lot of syntax errors!!!
is it File or FILE ?Code:File
is this needed?Code:File *fopen(),
Please try and compile the programs yourself and post them if you are satisfied with the output.
All the best
- Lakshmipathi.G
-------------------
FOSS India Award winning ext3fs Undelete tool and tutorials www.giis.co.in
First they criticize you,Then they laugh at you,Then they fight with you,Then you win. - M.K.Gandhi
-------------------
- 03-11-2009 #3
File
Its FILE and I fixed it on in the C Programmers Magazine. thanks.


Reply With Quote
