What is the output of below program? #include void main() { int a=10,b=0; if(a,b) { printf("COOL"); } } elect any one of the following options Complie Error COOL is printed Nothing is printed
Answers
Answered by
0
it will show error
Explanation:
specify the condition properly a is greater than b.
then it will print cool
Similar questions