โช Choose the correct option.
What will be the output of the following program on GCC?
#define PRINT printf("Welcome"); printf(" Home");
#include
void main(){
int x=1;
if(x--)
PRINT
else
printf("Else statement");
}
What will be the output of the following program on GCC?
What will be the output of the following program on GCC?
#define PRINT printf("Welcome"); printf(" Home");
#include
void main(){
int x=1;
if(x--)
PRINT
else
printf("Else statement");
}