foo.c: In function 'main':
foo.c:35:11: warning: format '%d' expects argument of type 'int *', but argument 2 has type 'int' [-Wformat=]
35 | scanf("%d",a1[i]);
| ~^ ~~~~~
| | |
| | int
| int *
foo.c:37:11: warning: format '%d' expects argument of type 'int *', but argument 2 has type 'int' [-Wformat=]
37 | scanf("%d",a2[i]);
| ~^ ~~~~~
| | |
| | int
| int *
foo.c:39:11: warning: format '%d' expects argument of type 'int *', but argument 2 has type 'int' [-Wformat=]
39 | scanf("%d",a3[i]);
| ~^ ~~~~~
| | |
| | int
| int *
foo.c:33:2: warning: ignoring return value of 'scanf', declared with attribute warn_unused_result [-Wunused-result]
33 | scanf("%d%d%d",&n1,&n2,&n3);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
foo.c:35:3: warning: ignoring return value of 'scanf', declared with attribute warn_unused_result [-Wunused-result]
35 | scanf("%d",a1[i]);
| ^~~~~~~~~~~~~~~~~
foo.c:37:3: warning: ignoring return value of 'scanf', declared with attribute warn_unused_result [-Wunused-result]
37 | scanf("%d",a2[i]);
| ^~~~~~~~~~~~~~~~~
foo.c:39:3: warning: ignoring return value of 'scanf', declared with attribute warn_unused_result [-Wunused-result]
39 | scanf("%d",a3[i]);
| ^~~~~~~~~~~~~~~~~
[Hydro](https://hydro.ac)提供评测服务