Basic C Programming MCQ Questions and Answers
Practice ModeShowing 10 of 198 questions
Q91
Which of the following statements are correct ?
Answer: Option
Q92
The default parameter passing mechanism is
Answer: Option A
Q93
Choose the correct statements.
Answer: Option
Q94
The storage class static can be used to
Answer: Option
Q95
The following program
main()
{printf ("tim");
main ();}
Answer: Option B
Q96
Consider the following program
main()
{ putchar ('M');
first ();
putchar ('m');}
first ()
{ _______ }
second()
{ putchar ('d');}
If madam is the required output, then the body of first () must be
Answer: Option C
Q97
Use of functions
Answer: Option
Q98
Which of the following comments about wide character is/are true ?
Answer: Option
Q99
Pick the correct statements.
Answer: Option
Q100
max is a function that returns the larger of the two integers, given as arguments. Which of the following statements finds the largest of three given numbers ?
Answer: Option