street_lamps.cpp: In function 'int main()':
street_lamps.cpp:17:19: warning: format '%s' expects argument of type 'char*', but argument 4 has type 'char (*)[800010]' [-Wformat=]
17 | scanf("%d %d %s",&n,&q,&s);
| ~^ ~~
| | |
| char* char (*)[800010]
street_lamps.cpp:26:17: warning: format '%s' expects argument of type 'char*', but argument 2 has type 'char (*)[800010]' [-Wformat=]
26 | scanf("%s",&inp);
| ~^ ~~~~
| | |
| | char (*)[800010]
| char*
street_lamps.cpp:16:11: warning: unused variable 'j' [-Wunused-variable]
16 | int i,j,n,m,q,f,t,cst,cou,su,k;
| ^
street_lamps.cpp:16:15: warning: unused variable 'm' [-Wunused-variable]
16 | int i,j,n,m,q,f,t,cst,cou,su,k;
| ^
street_lamps.cpp:16:23: warning: unused variable 'cst' [-Wunused-variable]
16 | int i,j,n,m,q,f,t,cst,cou,su,k;
| ^~~
street_lamps.cpp:16:27: warning: unused variable 'cou' [-Wunused-variable]
16 | int i,j,n,m,q,f,t,cst,cou,su,k;
| ^~~
street_lamps.cpp:16:34: warning: unused variable 'k' [-Wunused-variable]
16 | int i,j,n,m,q,f,t,cst,cou,su,k;
| ^
street_lamps.cpp:17:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
17 | scanf("%d %d %s",&n,&q,&s);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~
street_lamps.cpp:26:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
26 | scanf("%s",&inp);
| ~~~~~^~~~~~~~~~~
street_lamps.cpp:29:18: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
29 | scanf("%d",&f);
| ~~~~~^~~~~~~~~
street_lamps.cpp:41:18: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
41 | scanf("%d %d",&f,&t);
| ~~~~~^~~~~~~~~~~~~~~