#include<stdio.h>
int main()
{
floata=5.2;
if(a==5.2)
printf("Equal");
else
if(a<5.2)
printf("Less than");
else
printf("Greater than");
return 0;
}
A. Equal
B. Less than
C.. Greater than
D. Compiler error
E. None of above
int main()
{
floata=5.2;
if(a==5.2)
printf("Equal");
else
if(a<5.2)
printf("Less than");
else
printf("Greater than");
return 0;
}
A. Equal
B. Less than
C.. Greater than
D. Compiler error
E. None of above
No comments:
Post a Comment