100% C prog to append content to existing file and then read the whole content

#include<stdio.h>
#include<conio.h>
void main()
{
char ch;
FILE *fptr;
fptr=fopen("kotta1601.txt","a");
printf("\n start entering the data: \n ");
ch=getchar();
while(ch!='z')
{
fputc(ch,fptr);
ch=getchar();
}
fclose(fptr);
printf("\n appending completed");
printf("\n start reading the data from the file: \n ");
fptr=fopen("kotta1601.txt","r");
while(!feof(fptr))
{
ch=fgetc(fptr);
putchar(ch);
}
fclose(fptr);
getch();
}

కామెంట్‌లు

ఈ బ్లాగ్ నుండి ప్రసిద్ధ పోస్ట్‌లు

100% C prog to write content into a file and then read it back onto the console

Spic macay

శ్రీరస్తు.. రామలింగ 18-1-24 (సూరసాని వారి ఆహ్వానము)