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 
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 ");
}

A. C before: 0
From the message
C after: 17
B. Compiler Error
C. C before: 0
C after: 17
D. C before: 0
From the message
C after: 0