Compiler output
prog.cpp: In function 'int main()':
prog.cpp:8:5: warning: 'char* gets(char*)' is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations]
gets(subtitle);
^
prog.cpp:8:18: warning: 'char* gets(char*)' is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations]
gets(subtitle);
^
prog.cpp:9:36: warning: NULL used in arithmetic [-Wpointer-arith]
for (char* p = subtitle; *p != NULL; ++p) {
^
/tmp/ccCLF8tt.o: In function `main':
prog.cpp:(.text.startup+0x2a): warning: the `gets' function is dangerous and should not be used.