โช 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);
}