Compiler output
prog.cpp: In function 'bool capitalLetter(const char*)':
prog.cpp:7:9: warning: unused variable 'i' [-Wunused-variable]
int i ;
^
prog.cpp: In function 'int main()':
prog.cpp:57:9: warning: 'char* gets(char*)' is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations]
gets( buffer ) ;
^
prog.cpp:57:22: warning: 'char* gets(char*)' is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations]
gets( buffer ) ;
^
prog.cpp:69:32: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
ok &= ( strlen(buffer) == ( sum + 2 ) ) ;
^
/tmp/ccdPvFVE.o: In function `main':
prog.cpp:(.text.startup+0x6c): warning: the `gets' function is dangerous and should not be used.