Sail E0 Webinar
Question


Which of the following statement is correct about the program?


#include<stdio.h>
int main()
{
FILE *fp;
char ch;
int i=1;
fp = fopen("myfile.c", "r");
while((ch=getc(fp))!=EOF)
{
if(ch == '\n')
i++;
}
fclose(fp);
return 0;
}
Options:
A .  The code counts number of characters in the file
B .  The code counts number of words in the file
C .  The code counts number of blank lines in the file
D .  The code counts number of lines in the file
Answer: Option D

This program counts the number of lines in the file myfile.c by counting the character '`setminus`n' in that file.



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers