/in/foo.c: In function 'main':
/in/foo.c:5:17: error: 'j' undeclared (first use in this function)
char a[10]={j,m,p,w,f,z,p,v},b[10];
^
/in/foo.c:5:17: note: each undeclared identifier is reported only once for each function it appears in
/in/foo.c:5:19: error: 'm' undeclared (first use in this function)
char a[10]={j,m,p,w,f,z,p,v},b[10];
^
/in/foo.c:5:21: error: 'p' undeclared (first use in this function)
char a[10]={j,m,p,w,f,z,p,v},b[10];
^
/in/foo.c:5:23: error: 'w' undeclared (first use in this function)
char a[10]={j,m,p,w,f,z,p,v},b[10];
^
/in/foo.c:5:25: error: 'f' undeclared (first use in this function)
char a[10]={j,m,p,w,f,z,p,v},b[10];
^
/in/foo.c:5:27: error: 'z' undeclared (first use in this function)
char a[10]={j,m,p,w,f,z,p,v},b[10];
^
/in/foo.c:5:31: error: 'v' undeclared (first use in this function)
char a[10]={j,m,p,w,f,z,p,v},b[10];
^
/in/foo.c:12:8: warning: assignment makes integer from pointer without a cast [-Wint-conversion]
b[i]=a;
^
/in/foo.c:14:8: error: 'o' undeclared (first use in this function)
for(i=o;i<10;i++)
^
/in/foo.c:5:34: warning: variable 'b' set but not used [-Wunused-but-set-variable]
char a[10]={j,m,p,w,f,z,p,v},b[10];
^