What is the output of the C program below?
#include <stdio.h>
main()
{
char x=1.5;
double y =10;
printf("%d",!x || (y++) >10.0);
}
Answers
Answered by
0
Answer:
compiler error
Explanation:
char x not allow float
make it brilliant answer please
Similar questions