/in/foo.cc: In function 'int main()':
/in/foo.cc:11:17: warning: format '%d' expects argument of type 'int*', but argument 2 has type '__int128*' [-Wformat=]
11 | scanf("%d",&a,&b); printf("%d",a/b);
| ~^ ~~
| | |
| | __int128*
| int*
/in/foo.cc:11:15: warning: too many arguments for format [-Wformat-extra-args]
11 | scanf("%d",&a,&b); printf("%d",a/b);
| ^~~~
/in/foo.cc:11:37: warning: format '%d' expects argument of type 'int', but argument 2 has type '__int128' [-Wformat=]
11 | scanf("%d",&a,&b); printf("%d",a/b);
| ~^ ~~~
| | |
| int __int128