A
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);
}
void main()
{
int y = 5.3 % 2;
printf("The value of y is %d", y);
}
- Correct Answer - Option(D)
- Views: 20
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.