prog.c: In function 'Input':
prog.c:9:19: warning: assignment makes integer from pointer without a cast [-Wint-conversion]
s[i]=NULL;
^
prog.c:13:26: warning: 'return' with a value, in function returning void
return -1;
^
prog.c:4:6: note: declared here
void Input(char n[]){
^~~~~
prog.c:20:11: warning: implicit declaration of function 'Count' [-Wimplicit-function-declaration]
Count(s,l);
^~~~~
prog.c:21:18: warning: 'return' with a value, in function returning void
return 0;
^
prog.c:4:6: note: declared here
void Input(char n[]){
^~~~~
prog.c: At top level:
prog.c:24:6: warning: conflicting types for 'Count'
void Count(char n[],int l)
^~~~~
prog.c:20:11: note: previous implicit declaration of 'Count' was here
Count(s,l);
^~~~~