Run id: 153345
Main.cc: In function 'int main()':
Main.cc:11:17: error: expected unqualified-id before 'int'
for(int j=l-1,int i=1;i<=l;j>=0;i++;j--){
^
Main.cc:11:17: error: expected ';' before 'int'
Main.cc:11:26: warning: for increment expression has no effect [-Wunused-value]
for(int j=l-1,int i=1;i<=l;j>=0;i++;j--){
^
Main.cc:11:29: error: expected ')' before ';' token
for(int j=l-1,int i=1;i<=l;j>=0;i++;j--){
^
Main.cc:11:11: warning: unused variable 'j' [-Wunused-variable]
for(int j=l-1,int i=1;i<=l;j>=0;i++;j--){
^
Main.cc:11:30: error: 'j' was not declared in this scope
for(int j=l-1,int i=1;i<=l;j>=0;i++;j--){
^
Main.cc:11:35: error: 'i' was not declared in this scope
for(int j=l-1,int i=1;i<=l;j>=0;i++;j--){
^
Main.cc:10:19: warning: unused variable 'n' [-Wunused-variable]
int l=strlen(a),n=0;
^