Q. What is the output of the program.?
Code:
int main()
{
int a = 25%10;
printf("%d", a);
return 0;
}
β
Correct Answer: (C)
5
int main()
{
int a = 25%10;
printf("%d", a);
return 0;
}
You must be Logged in to update hint/solution