โช 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();
}
What will be the output of the following program on GCC?
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();
}