foo.c: In function 'judge':
foo.c:5:10: warning: implicit declaration of function 'strlen' [-Wimplicit-function-declaration]
  int len=strlen(m);
          ^~~~~~
foo.c:5:10: warning: incompatible implicit declaration of built-in function 'strlen'
foo.c:5:10: note: include '<string.h>' or provide a declaration of 'strlen'
foo.c: In function 'main':
foo.c:24:2: warning: 'gets' is deprecated [-Wdeprecated-declarations]
  gets(m);
  ^~~~
In file included from /usr/include/stdio.h:862:0,
                 from foo.c:1:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:232:1: note: declared here
 gets (char *__str)
 ^~~~
foo.c:22:2: warning: ignoring return value of 'scanf', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d",&n);
  ^~~~~~~~~~~~~~
foo.c:24:2: warning: ignoring return value of 'gets', declared with attribute warn_unused_result [-Wunused-result]
  gets(m);
  ^~~~~~~
/tmp/ccJ4lsIF.o: In function `main':
foo.c:(.text.startup+0x72): warning: the `gets' function is dangerous and should not be used.