What will be the output of the following program?
void func() { printf("Testing...Done"); } void main() { func; func(); }What would be the output of the following?
main() { int a=10,b; a>=5?b=100:b=200; printf("%d",b); }
Reveal answer
Fill a bubble to check yourself