odasiljaci.cpp: In function 'int main()':
odasiljaci.cpp:33:17: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'long long int*' [-Wformat=]
33 | scanf("%d%d",&X[x],&Y[x]);
| ~^ ~~~~~
| | |
| int* long long int*
| %lld
odasiljaci.cpp:33:19: warning: format '%d' expects argument of type 'int*', but argument 3 has type 'long long int*' [-Wformat=]
33 | scanf("%d%d",&X[x],&Y[x]);
| ~^ ~~~~~
| | |
| int* long long int*
| %lld
odasiljaci.cpp:31:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
31 | scanf("%d",&n);
| ~~~~~^~~~~~~~~
odasiljaci.cpp:33:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
33 | scanf("%d%d",&X[x],&Y[x]);
| ~~~~~^~~~~~~~~~~~~~~~~~~~