Question
#include<stdio.h>
int main()
{
printf("%%%%\n");
return 0;
}
a.
%%%%%
b.
%%
c.
No output
d.
Error
Posted under C Programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What will be the output of the program ?
Similar Questions
Discover Related MCQs
Q. The maximum combined length of the command-line arguments including the spaces between adjacent arguments is
View solution
Q. According to ANSI specifications which is the correct way of declaring main when it receives command-line arguments?
View solution
Q. What do the 'c' and 'v' in argv stands for?
View solution
Q. Which of the following is TRUE about argv?
View solution
Q. Which of the following statements are FALSE about the below code?
int main(int ac, char *av[])
{
}
View solution
Q. In the following statement
fprintf(fpt,"%n",i),
the variable fpt is a/an
View solution
Q. The function fopen("filename","r")returns
View solution
Q. The function sprintf()works like printf(),but operatres on
View solution
Q. To instantiate an object with the statement
ifstream items("C:inven.txt");
the file on the disk is identified by the name
View solution
Q. Expression ((fpt=fopen("Samples","w"))==NULL)would be true if
View solution
Q. The statement fseek(fp,0L,0)i - if syntactically correct,means
View solution
Q. The process of accessing data stored in a tape is similar to manipulating data on a
View solution
Q. If a file is opened in r+ mode then
View solution
Q. If a file is opened in w+ mode then
View solution
Q. ftell
View solution
Q. The fseek function
View solution
Q. The contents of a file will be lost if it is opened in
View solution
Q. Which of the following statements is incorrect ?
View solution
Q. If y is of integer type then the expression
3 * ( y - 8 ) / 9 and ( y - 8 )/ 9 * 3
View solution
Q. If n has the value 3, then the output of the statement
printf( " %d %d " , n++, ++n);
View solution
Suggested Topics
Are you eager to expand your knowledge beyond C Programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!