/in/foo.cc: In function 'int main()':
/in/foo.cc:7:10: warning: right operand of comma operator has no effect [-Wunused-value]
cin>>a,b;
^
/in/foo.cc:14:28: warning: format '%i' expects argument of type 'int', but argument 2 has type 'int*' [-Wformat=]
printf("%i,%f",&c," ",&d);
^
/in/foo.cc:14:28: warning: format '%f' expects argument of type 'double', but argument 3 has type 'const char*' [-Wformat=]
/in/foo.cc:14:28: warning: too many arguments for format [-Wformat-extra-args]
/in/foo.cc:8:3: warning: 'b' is used uninitialized in this function [-Wuninitialized]
c=b;
~^~