✪ Choose the correct option.
What will be the output of the following program on GCC?
#include
void main(){
int a=100;
if(a>10)
printf("Welcome ");
else if(a>20)
printf("Let us ");
else if(a>30)
printf("c ");
}
What will be the output of the following program on GCC?
What will be the output of the following program on GCC?
#include
void main(){
int a=100;
if(a>10)
printf("Welcome ");
else if(a>20)
printf("Let us ");
else if(a>30)
printf("c ");
}