Login and Register ×
Check your Email for the OTP
C Programming Language MCQ Fundamentals of C Language
⚠ Report ✓ Question Verified Copy Link
#include int main() { int x = 5; printf("%d", x++); return 0; }
Explanation:
Answer: A
Explanation: The value of x is first printed using printf, and then incremented by the ++ operator. Therefore, the output will be 5.
x
printf
++
Related Topic:
Share Above MCQ
Learn More MCQ Questions from C Programming Language MCQ Fundamentals of C Language