What happens if you try to compile and run this program?
#include <stdio.h>
int main (int argc, char *argv[]) {
char *p = "John" " " "Bean";
printf("[%s]", p) ;
return 0;
}
Choose the right answer:
A. The program outputs "[]"
B. The program outputs nothing
C. The program outputs [John Bean]
D. The program outputs three lines of text
E. The program outputs two lines of text