Program to accept data and store the given data into file print the data - 100 Most Important C# Programs

92. Program to accept data and store the given data into file print the data.

Code:

#include<conio.h>

#include<stdio.h>

main( )

{

FILE *fp;

char c;

fp=fopen(“data.dat”,”w”);

clrscr();

printf(“enter text”);

while(1)

{c

=getchar( );

if(c==eof( ))

break;

putc(c);

}f

close(fp);

fp=fopen(“data.dat”,”r”);

while(1)

{c

=getc(fp);

if(c==eof( ))

break;

putchar(c);

}

getch( );

fclose(fp);

}





All materials on the site are licensed Creative Commons Attribution-Sharealike 3.0 Unported CC BY-SA 3.0 & GNU Free Documentation License (GFDL)

If you are the copyright holder of any material contained on our site and intend to remove it, please contact our site administrator for approval.

© 2016-2025 All site design rights belong to S.Y.A.