Telegram Group 🔥🔥🔥
Get answers in minutes
Questions answered :
48
/50
On executing the below program what will be the contents of 'target.txt' file if the source file contains a line "To err is human"
#include<stdio.h>
int main()
{
int i, fss;
char ch, source[20] = "source.txt", target[20]="target.txt", t;
FILE *fs, *ft;
fs = fopen(source, "r");
ft = fopen(target, "w");
while(1)
{
ch=getc(fs);
if(ch==EOF)
break;
else
{
fseek(fs, 4L, SEEK_CUR);
fputc(ch, ft);
}
}
return 0;
}
🗓 Jul 11, 2021
votes
Andrea
🌐 India
I'm in exam, can any one give the solution for this question
votes
Courtney
🌐 India
Hello, please post an solution as well
Was your question answered?
Want to get famous? 📸
Answer question and get 🤩 high-lighted on our homepage.