Compiler output
prog.cpp: In function 'int main()':
prog.cpp:10:5: warning: 'char* gets(char*)' is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations]
gets(s);
^
prog.cpp:10:11: warning: 'char* gets(char*)' is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations]
gets(s);
^
prog.cpp:12:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < strlen(s); i++)
^
/tmp/ccvYTLWV.o: In function `main':
prog.cpp:(.text.startup+0xa): warning: the `gets' function is dangerous and should not be used.