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