Q. What will be the final value of x in the following C code?
Code:#include <stdio.h>
void main()
{
int x = 5 * 9 / 3 + 9;
}
β
Correct Answer: (C)
24
#include <stdio.h>
void main()
{
int x = 5 * 9 / 3 + 9;
}
You must be Logged in to update hint/solution