C - Operators and Expressions
What is the output of this C code?
int a = 4, b = 2, c = 3;
int result = a - b * c + 5;
printf("%d", result);int a = 4, b = 2, c = 3;
int result = a - b * c + 5;
printf("%d", result);15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions