Question
#include <stdio.h>
printf("%d", sizeof('a'));
a.
1
b.
2
c.
4
d.
None of the mentioned
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 is the output of this C code?
Similar Questions
Discover Related MCQs
Q. Size of an array can be evaluated by:
(Assuming array declaration int a[10];)
View solution
Q. Which of the following is not an operator in C?
View solution
Q. Which among the following has the highest precedence?
View solution
Q. What type of value does sizeof return?
View solution
Q. The sizeof(void) in a 32-bit C is_____
View solution
Q. Which among the following is never possible in C when members are different in a structure and union?
//Let P be a structure
//Let Q be a union
View solution
Q. Which among the following is never possible in C when members in a structure are same as that in a union?
//Let P be a structure
//Let Q be a union
View solution
Q. Which among the following is right?
View solution
Q. Which of the following cannot be used inside sizeof?
View solution
Q. In a file contains the line "I am a boy\r\n" then on reading this line into the array str using fgets(). What will str contain?
View solution
Q. Out of fgets() and gets() which function is safe to use?
View solution
Q. What is the purpose of "rb" in fopen() function used below in the code?
FILE *fp;
fp = fopen("source.txt", "rb");
View solution
Q. Which of the following operations can be performed on the file "NOTES.TXT" using the below code?
FILE *fp;
fp = fopen("NOTES.TXT", "r+");
View solution
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
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!