Q. Choose a right statement.
Code:
int main()
{
float c = 3.5 + 4.5;
printf("%d", (int)c);
return 0;
}
β
Correct Answer: (D)
8
int main()
{
float c = 3.5 + 4.5;
printf("%d", (int)c);
return 0;
}
You must be Logged in to update hint/solution