foo.c: In function 'Concat':
foo.c:21:13: error: stray '\' in program
printf("%s"\n",s);
^
foo.c:21:14: error: expected ')' before 'n'
printf("%s"\n",s);
^
foo.c:21:15: warning: missing terminating " character
printf("%s"\n",s);
^
foo.c:21:15: error: missing terminating " character
printf("%s"\n",s);
^~~~~
foo.c:21:11: warning: format '%s' expects a matching 'char *' argument [-Wformat=]
printf("%s"\n",s);
~^
foo.c:22:1: error: expected ';' before '}' token
}
^
foo.c:15:7: warning: variable 's' set but not used [-Wunused-but-set-variable]
char s[20000];
^
foo.c: In function 'main':
foo.c:25:2: warning: 'gets' is deprecated [-Wdeprecated-declarations]
gets(s1);
^~~~
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:26:2: warning: 'gets' is deprecated [-Wdeprecated-declarations]
gets(s2);
^~~~
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: In function 'Concat':
foo.c:22:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
foo.c: In function 'main':
foo.c:25:2: warning: ignoring return value of 'gets', declared with attribute warn_unused_result [-Wunused-result]
gets(s1);
^~~~~~~~
foo.c:26:2: warning: ignoring return value of 'gets', declared with attribute warn_unused_result [-Wunused-result]
gets(s2);
^~~~~~~~