Page 1 of 1

What will be the final value of x in the following C code?

Posted: Wed Jul 13, 2022 7:53 pm
by answerhappygod
#include <stdio.h> void main() { int x = 5 * 9 / 3 + 9; }
a) 3.75
b) Depends on compiler
c) 24
d) 3