C Programming Language MCQ Operators and Enums in C Language
⚠ Report ✓ Question Verified Copy Link
#include void main() { int a, b, c, d; a = 3; b = 5; c = a, b; d = (a, b); printf("c=%d d=%d", c, d); }
Learn More MCQ Questions from C Programming Language MCQ Operators and Enums in C Language