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