/in/foo.cc: In function 'int main()':
/in/foo.cc:5:14: warning: 'i' is used uninitialized in this function [-Wuninitialized]
int n,i,a[i],b,d,e,g,h;
^
/in/foo.cc:15:4: warning: 'h' is used uninitialized in this function [-Wuninitialized]
b=h/i;
~^~~~
/in/foo.cc:10:11: warning: 'f' may be used uninitialized in this function [-Wmaybe-uninitialized]
for(int f;f<=i;f++){
^
/in/foo.cc:16:11: warning: 'c' may be used uninitialized in this function [-Wmaybe-uninitialized]
for(int c;c<=i;c++){
^
/in/foo.cc:5:18: warning: 'd' may be used uninitialized in this function [-Wmaybe-uninitialized]
int n,i,a[i],b,d,e,g,h;
^
/in/foo.cc:20:10: warning: 'e' may be used uninitialized in this function [-Wmaybe-uninitialized]
cout<<e;
^