forked from KolibriOS/kolibrios
Example of work with files in TinyC.
git-svn-id: svn://kolibrios.org@612 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
c38424c343
commit
4bfb625f10
43
programs/develop/metcc/trunk/samples/files/FILES.C
Normal file
43
programs/develop/metcc/trunk/samples/files/FILES.C
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
|
||||||
|
int i;
|
||||||
|
char c;
|
||||||
|
FILE *f;
|
||||||
|
FILE *fin;
|
||||||
|
FILE *fout;
|
||||||
|
|
||||||
|
//write to file
|
||||||
|
f=fopen("testfile.txt","w");
|
||||||
|
|
||||||
|
for(i=0;i<50;i++)
|
||||||
|
{
|
||||||
|
fputc('1',f);
|
||||||
|
}
|
||||||
|
fclose(f);
|
||||||
|
|
||||||
|
//append to file
|
||||||
|
f=fopen("testfile.txt","a");
|
||||||
|
|
||||||
|
for(i=0;i<50;i++)
|
||||||
|
{
|
||||||
|
fputc('2',f);
|
||||||
|
}
|
||||||
|
fclose(f);
|
||||||
|
|
||||||
|
//copy from testfile.txt to copyfile.txt
|
||||||
|
|
||||||
|
fin=fopen("testfile.txt","r");
|
||||||
|
fout=fopen("copyfile.txt","w");
|
||||||
|
|
||||||
|
while((c=fgetc(fin))!=EOF)
|
||||||
|
{
|
||||||
|
fputc(c,fout);
|
||||||
|
}
|
||||||
|
fclose(fin);
|
||||||
|
fclose(fout);
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user