#define PRINT printf("Welcome"); print

Loading

โœช Choose the correct option.

#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

Leave a Comment