adplus-dvertising
frame-decoration

Question

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;
}

a.

r n

b.

Trh

c.

err

d.

None of above

Posted under C Programming

Answer: (b).Trh

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. 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"?

Similar Questions

Discover Related MCQs

Q. The maximum combined length of the command-line arguments including the spaces between adjacent arguments is

Q. According to ANSI specifications which is the correct way of declaring main when it receives command-line arguments?

Q. What do the 'c' and 'v' in argv stands for?

Q. Which of the following is TRUE about argv?

Q. Which of the following statements are FALSE about the below code?
int main(int ac, char *av[])
{
}

Q. In the following statement
fprintf(fpt,"%n",i),
the variable fpt is a/an

Q. The function fopen("filename","r")returns

Q. The function sprintf()works like printf(),but operatres on

Q. To instantiate an object with the statement

ifstream items("C:inven.txt");

the file on the disk is identified by the name

Q. Expression ((fpt=fopen("Samples","w"))==NULL)would be true if

Q. The statement fseek(fp,0L,0)i - if syntactically correct,means

Q. The process of accessing data stored in a tape is similar to manipulating data on a

Q. If a file is opened in r+ mode then

Q. If a file is opened in w+ mode then

Q. ftell

Q. The fseek function

Q. The contents of a file will be lost if it is opened in

Q. Which of the following statements is incorrect ?

Q. If y is of integer type then the expression
 3 * ( y - 8 ) / 9 and  ( y - 8 )/ 9 * 3

Q. If n has the value 3, then the output of the statement

printf(  " %d %d " , n++, ++n);