xsanexensprocke6425 xsanexensprocke6425 25-01-2024 Computers and Technology contestada What will be the output of the program?#include#includeint main(){ char *s; char *fun(); s = fun(); printf("%s\n", s); return 0;}char *fun(){ char buffer[30]; strcpy(buffer, "RAM"); return (buffer);}