What will be the output of the following program on GCC?

		
					

Loading

โœช 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");
}

A. Welcome Home
B. Else statement
C. compiler error
D. Welcome