1.
What will be the output of the following C code?
#include <stdio.h>
int main()
{
    printf("C programming %s", "Class by\n%s Shyam", "WOW");
}

5.
What will be the output of the following C code?
#include<stdio.h>
enum class
{
    a,b,c
};
enum class m;
main()
{
    printf("%d",sizeof(m));
}

7.
What will be the output of the following C code?
#include <stdio.h>
int main()
{
    int a = 1, b = 1, c;
    c = a++ + b;
    printf("%d, %d", a, b);
}

9.
Why do variable names beginning with the underscore is not encouraged?

Read More Section(C Fundamentals)

Each Section contains maximum 100 MCQs question on C Fundamentals. To get more questions visit other sections.