Q. What is the value of “y” in this code?
Code:
#include <stdio.h>
void main()
{
int y = 5.3 % 2;
printf("The value of y is %d", y);
}
β
Correct Answer: (D)
Compilation error