Main.cc: In function 'int main()':
Main.cc:6:9: error: redeclaration of 'int a'
int a,b,c;
^
Main.cc:5:5: note: 'int a' previously declared here
int a,b;
^
Main.cc:6:11: error: redeclaration of 'int b'
int a,b,c;
^
Main.cc:5:7: note: 'int b' previously declared here
int a,b;
^
Main.cc:8:5: error: 't' was not declared in this scope
t=a;
^
Main.cc:6:13: warning: unused variable 'c' [-Wunused-variable]
int a,b,c;
^