โช Choose the correct option.
What will be the output of the following program on GCC?
#include
int message();
int main() {
int c;
printf("C before: %d ",c);
c=message();
printf("C after: %d ",c);
return 0;
}
int message(){
printf("From the message ");
}