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