/in/foo.c: In function 'main':
/in/foo.c:5:5: warning: 'gets' is deprecated [-Wdeprecated-declarations]
gets(a);
^~~~
In file included from /in/foo.c:1:0:
/usr/include/stdio.h:640:14: note: declared here
extern char *gets (char *__s) __wur __attribute_deprecated__;
^~~~
/in/foo.c:7:14: warning: array subscript has type 'char' [-Wchar-subscripts]
for(i=0;a[i];++i)
^
/in/foo.c:10:18: warning: array subscript has type 'char' [-Wchar-subscripts]
for(j=i;a[j];j++)
^
/in/foo.c:12:17: warning: array subscript has type 'char' [-Wchar-subscripts]
if(a[j]==ch)
^
/in/foo.c:20:29: warning: array subscript has type 'char' [-Wchar-subscripts]
a[j-count]=a[j];
^
/tmp/ccAZzV7U.o: In function `main':
foo.c:(.text.startup+0xe): warning: the `gets' function is dangerous and should not be used.