โช Choose the correct option.
What will be the output of the following program on GCC compiler?
#include
#define FUN(arg) do{if(arg)printf("Hello World...", " ");}while(--i)
int main() {
int i=2;
FUN(i<3);
return 0;
}