boost learn study
Tuesday, April 1, 2014
A Program Write data into File and Read data from File
Home
�
C File Input/Output
�
Write data into File and Read from File
#include
#include
void main() { FILE *p; char ch; printf("Enter the Lines"); p = fopen("Student.txt","w"); while((ch=getchar()!=EOF) { putc(ch,p); } fclose(p); printf("After the Inputting"); p = fopen("Student.txt","r"); while((ch=getc(p))!EOF) { printf("%c",ch); } fclose(p); getch(); }
Read more �
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment