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