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?

#include 
void message();
int main(){
message();
printf("hello world ");
return 0;
}
void message(){
main();
}

A. hello world
B. compiler error
C. prints “hello world” infinitely
D. NULL