Q. What is the output of the C Program?
Code:int main()
{
float a=10.0;
a = a % 3;
printf("%f", a);
return 0;
}
β
Correct Answer: (D)
Compiler error.
int main()
{
float a=10.0;
a = a % 3;
printf("%f", a);
return 0;
}
You must be Logged in to update hint/solution