C - Operators and Expressions
Given the code:
What is the output and why?
int a = 8, b = 3;
int result = a / b * b + a % b;
printf("%d", result);What is the output and why?
int a = 8, b = 3;
int result = a / b * b + a % b;
printf("%d", result);15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions