Operators and Expressions MCQs

85 questionsC-ProgramPage 10 of 10

Practice free Operators and Expressions multiple-choice questions with instant answer feedback and step-by-step solutions. Click an option to check yourself, reveal the full explanation, and work through all 85 questions — no login required.

Question 82easy
What will be the output of the following C code?
#include <stdio.h>
main()
{
    int a = 1;
    printf("size of a is %d, ", sizeof(++a));
    printf("value of a is %d", a);
};
Question 83easy
Which of the following is not an operator in C?
Question 84easy
%lf is used to display?
Advertisement
Question 85easy
Which among the following is never possible in C when members in a structure are the same as that in a union?
//Let P be a structure
//Let Q be a union
Operators and Expressions MCQs with Answers & Solutions — C-Program | GrabStudy