What is the correct syntax of the main function in C?
Which of the following is not a valid C data type?
What is the size of a char data type in C?
The continue statement in C is used to:
What is the output of 5 % 2 in C?
Which operator has the highest precedence in C?
What is the correct syntax for declaring a 1-D array in C?
In a switch-case statement, the default keyword is:
What will printf("%d", "A"); print in C?
The type conversion explicitly performed by the programmer is called:
Which keyword is used to define a union in C?
What is the difference between struct and union?
How do you pass an array to a function in C?
What will be the output of this loop: for(i=0; i<5; i++) printf("%d", i);?
What is the purpose of a typedef in C?
Which is a correct declaration of a character array?
In recursion, a function:
The sizeof operator in C:
Which storage class makes a variable retain its value between function calls?
Bit-fields in structures are used to: