/in/foo.cc: In function 'int main()':
/in/foo.cc:7:18: warning: format '%d' expects argument of type 'int', but argument 2 has type 'int*' [-Wformat=]
printf("%d",&T);
^
/in/foo.cc:8:35: warning: format '%d' expects argument of type 'int', but argument 2 has type 'int*' [-Wformat=]
{printf("%d\n%d\n%d\n",&n,&h,&r);
^
/in/foo.cc:8:35: warning: format '%d' expects argument of type 'int', but argument 3 has type 'int*' [-Wformat=]
/in/foo.cc:8:35: warning: format '%d' expects argument of type 'int', but argument 4 has type 'int*' [-Wformat=]
/in/foo.cc:9:37: warning: format '%d' expects argument of type 'int', but argument 2 has type 'int*' [-Wformat=]
printf("%d\n%d\n%d\n",&x1,&y1,&z1);
^
/in/foo.cc:9:37: warning: format '%d' expects argument of type 'int', but argument 3 has type 'int*' [-Wformat=]
/in/foo.cc:9:37: warning: format '%d' expects argument of type 'int', but argument 4 has type 'int*' [-Wformat=]
/in/foo.cc:10:37: warning: format '%d' expects argument of type 'int', but argument 2 has type 'int*' [-Wformat=]
printf("%d\n%d\n%d\n",&x2,&y2,&z2);
^
/in/foo.cc:10:37: warning: format '%d' expects argument of type 'int', but argument 3 has type 'int*' [-Wformat=]
/in/foo.cc:10:37: warning: format '%d' expects argument of type 'int', but argument 4 has type 'int*' [-Wformat=]
/in/foo.cc:11:18: warning: statement has no effect [-Wunused-value]
{if (x2>x1);y2>y1;z2>z1;
~~^~~
/in/foo.cc:11:24: warning: statement has no effect [-Wunused-value]
{if (x2>x1);y2>y1;z2>z1;
~~^~~
/in/foo.cc:13:4: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if (x1>x2);y1>y2;z1>z2;
^~
/in/foo.cc:13:15: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if (x1>x2);y1>y2;z1>z2;
^~
/in/foo.cc:13:17: warning: statement has no effect [-Wunused-value]
if (x1>x2);y1>y2;z1>z2;
~~^~~
/in/foo.cc:13:23: warning: statement has no effect [-Wunused-value]
if (x1>x2);y1>y2;z1>z2;
~~^~~