What will be the output of the folowing program on GCC compiler?

Loading

โœช Choose the correct option.

What will be the output of the folowing program on GCC compiler?

#include 
#include
int main() {
char *s;
char *fun();
s = fun();
printf("%s ", s);
return 0;
}
char *fun() {
char buffer[30];
strcpy(buffer, "RAM");
return (buffer);
}

A. 0xfff
B. Garbage Value
C. 0xffee
D. Error