
Untitled
By: a guest on Jan 28th, 2012 | syntax:
C | size: 0.63 KB | hits: 16 | expires: Never
/*S.A hossam :D,
Lama te3ooz te3mel file gedid esmoh ( lol.txt ) betekteb :
*/
FILE *f=open("lol.txt","w");
/*
Lama te3ooz te2ra men file betekteb :
*/
FILE *f=open("lol.txt","r");
/*
Lama te3ooz tekteb 7aga fy file betekteb :
*/
fprintf(f,"Hello World");
/*
lama te7eb tekteb ay 7aga be arguments gowa file betekteb :
*/
char *x="Hossam";
fprintf("f,"Hello %s",*x);
/*
Lama te7eb ta5od inputs men file betekteb :
*/
fscanf(f,"%d");
/*
ya2ema betesta3mel fgetc();
*/
int x=fgetc(f);
/*
we 3ala fekra fgetc() dih kman betosta3mal fel C++ :
http://www.cplusplus.com/reference/clibrary/cstdio/fgetc/
*/