R
Q. What is the output of the C Program?
Code:
int main()
{
float a=10.0;
a = (int)a % 3;
printf("%f", a);
return 0;
}
{
float a=10.0;
a = (int)a % 3;
printf("%f", a);
return 0;
}
- Correct Answer - Option(C)
- Views: 132
- Filed under category C Programming
Discusssion
Login to discuss.