/in/isSibling.c: In function 'isSibling':
/in/isSibling.c:20:11: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
temp1 = ' ';
^
/in/isSibling.c:22:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i=0; i < lenth1 -1; ++i)
^
/in/isSibling.c:24:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int j=0; j<lenth1 - 1 - i; ++j)
^
/in/isSibling.c:28:30: warning: passing argument 2 of 'strcpy' makes pointer from integer without a cast [-Wint-conversion]
strcpy(temp1,p1[j]);
^~
In file included from /in/isSibling.c:5:0:
/usr/include/string.h:121:14: note: expected 'const char * restrict' but argument is of type 'char'
extern char *strcpy (char *__restrict __dest, const char *__restrict __src)
^~~~~~
/in/isSibling.c:29:24: warning: passing argument 1 of 'strcpy' makes pointer from integer without a cast [-Wint-conversion]
strcpy(p1[j],p1[j+1]);
^~
In file included from /in/isSibling.c:5:0:
/usr/include/string.h:121:14: note: expected 'char * restrict' but argument is of type 'char'
extern char *strcpy (char *__restrict __dest, const char *__restrict __src)
^~~~~~
/in/isSibling.c:29:30: warning: passing argument 2 of 'strcpy' makes pointer from integer without a cast [-Wint-conversion]
strcpy(p1[j],p1[j+1]);
^~
In file included from /in/isSibling.c:5:0:
/usr/include/string.h:121:14: note: expected 'const char * restrict' but argument is of type 'char'
extern char *strcpy (char *__restrict __dest, const char *__restrict __src)
^~~~~~
/in/isSibling.c:30:24: warning: passing argument 1 of 'strcpy' makes pointer from integer without a cast [-Wint-conversion]
strcpy(p1[j+1],temp1);
^~
In file included from /in/isSibling.c:5:0:
/usr/include/string.h:121:14: note: expected 'char * restrict' but argument is of type 'char'
extern char *strcpy (char *__restrict __dest, const char *__restrict __src)
^~~~~~
/in/isSibling.c:35:11: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
temp2 = ' ';
^
/in/isSibling.c:36:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i=0; i < lenth2 -1; ++i)
^
/in/isSibling.c:38:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int j=0; j<lenth2 - 1 - i; ++j)
^
/in/isSibling.c:42:30: warning: passing argument 2 of 'strcpy' makes pointer from integer without a cast [-Wint-conversion]
strcpy(temp2,p2[j]);
^~
In file included from /in/isSibling.c:5:0:
/usr/include/string.h:121:14: note: expected 'const char * restrict' but argument is of type 'char'
extern char *strcpy (char *__restrict __dest, const char *__restrict __src)
^~~~~~
/in/isSibling.c:43:24: warning: passing argument 1 of 'strcpy' makes pointer from integer without a cast [-Wint-conversion]
strcpy(p2[j],p2[j+1]);
^~
In file included from /in/isSibling.c:5:0:
/usr/include/string.h:121:14: note: expected 'char * restrict' but argument is of type 'char'
extern char *strcpy (char *__restrict __dest, const char *__restrict __src)
^~~~~~
/in/isSibling.c:43:30: warning: passing argument 2 of 'strcpy' makes pointer from integer without a cast [-Wint-conversion]
strcpy(p2[j],p2[j+1]);
^~
In file included from /in/isSibling.c:5:0:
/usr/include/string.h:121:14: note: expected 'const char * restrict' but argument is of type 'char'
extern char *strcpy (char *__restrict __dest, const char *__restrict __src)
^~~~~~
/in/isSibling.c:44:24: warning: passing argument 1 of 'strcpy' makes pointer from integer without a cast [-Wint-conversion]
strcpy(p2[j+1],temp2);
^~
In file included from /in/isSibling.c:5:0:
/usr/include/string.h:121:14: note: expected 'char * restrict' but argument is of type 'char'
extern char *strcpy (char *__restrict __dest, const char *__restrict __src)
^~~~~~