/in/foo.cc: In function 'int main()':
/in/foo.cc:10:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0;i<=s.size()-1;i++)
~^~~~~~~~~~~~
/in/foo.cc:19:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(s[i]=='E')a[z]=x;b[z]=y;
^~
/in/foo.cc:19:23: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(s[i]=='E')a[z]=x;b[z]=y;
^
/in/foo.cc:6:53: warning: unused variable 'n' [-Wunused-variable]
int flag,a[1000000],b[1000000],c[100000],d[100000],n=0,x=0,y=0,sign=0,z=0,p=0,q=0,e=0;
^
/in/foo.cc:6:6: warning: 'flag' may be used uninitialized in this function [-Wmaybe-uninitialized]
int flag,a[1000000],b[1000000],c[100000],d[100000],n=0,x=0,y=0,sign=0,z=0,p=0,q=0,e=0;
^~~~