Vidyalelo
C Programming · all questions

Function
practice.

Practice every MCQ with options. Use Show answers when you want the correct option and solution.

223

Questions

12/12

Page

Pick an option on a question to see the right answer and solution.

What will be the output of the following C code?
#include <stdio.h>
# define max
void m()
{
    printf("hi");
}
void main()
{
    max;
    m();
}

Select an option to see the answer and solution.

What will be the output of the following C code?
#include <stdio.h>
#define foo(m, n) m ## n
int main()
{
    printf("%s\n", foo(k, l));
}

Select an option to see the answer and solution.

How is search done in #include and #include "somelibrary.h" according to C standard?

Select an option to see the answer and solution.