/in/foo.cc: In function 'int main()':
/in/foo.cc:8:1: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=0;i<N;++i)
^~~
/in/foo.cc:9:8: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
int a;cin>>a[i];
^~~
/in/foo.cc:9:6: warning: unused variable 'a' [-Wunused-variable]
int a;cin>>a[i];
^
/in/foo.cc:9:13: error: 'a' was not declared in this scope
int a;cin>>a[i];
^
/in/foo.cc:9:15: error: 'i' was not declared in this scope
int a;cin>>a[i];
^