Run id: 134434
Main.cc: In function 'int main()':
Main.cc:5:11: error: conflicting declaration 'double a'
double a=5.0;
^
Main.cc:4:8: note: previous declaration as 'int a'
int a,b,c,d;
^
Main.cc:6:13: error: conflicting declaration 'double b'
double b=2.5;
^
Main.cc:4:10: note: previous declaration as 'int b'
int a,b,c,d;
^
Main.cc:7:20: warning: format '%lf' expects argument of type 'double', but argument 2 has type 'int' [-Wformat=]
printf("%.2lf",a);
^
Main.cc:8:22: warning: format '%lf' expects argument of type 'double', but argument 2 has type 'int' [-Wformat=]
printf("%.2lf",b);
^
Main.cc:4:12: warning: unused variable 'c' [-Wunused-variable]
int a,b,c,d;
^
Main.cc:4:14: warning: unused variable 'd' [-Wunused-variable]
int a,b,c,d;
^