Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

File IO Practice

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

#include <stdio.

h>
#include <conio.h>

void main()
{
FILE *fp;
fp=fopen("myfile.txt","r+");
if(fp!=0)
{
fprintf(fp,"%06d", 123);
fprintf(fp, "%06.2f", 55.0);
fprintf(fp, "%c", 'r');
fprintf(fp, "%s", "abcdefg");
putc('a', fp);
fputs("abcdef", fp);

fclose(fp);

if(!_getch())
_getch();
}
}

You might also like