carnival.cpp: In function 'int BB(int)':
carnival.cpp:14:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=ini;i<=m;i++) printf("%d ",posCor[i]); printf("%d ",pos);
^~~
carnival.cpp:14:52: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for(int i=ini;i<=m;i++) printf("%d ",posCor[i]); printf("%d ",pos);
^~~~~~
carnival.cpp: In function 'int main()':
carnival.cpp:28:28: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'int' [-Wformat=]
int resp; scanf("%d",resp);
^
carnival.cpp: In function 'int BB(int)':
carnival.cpp:15:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
int resp; scanf("%d",&resp);
~~~~~^~~~~~~~~~~~
carnival.cpp: In function 'int main()':
carnival.cpp:23:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d",&n);
~~~~~^~~~~~~~~
carnival.cpp:28:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
int resp; scanf("%d",resp);
~~~~~^~~~~~~~~~~
carnival.cpp:28:18: warning: 'resp' may be used uninitialized in this function [-Wmaybe-uninitialized]
int resp; scanf("%d",resp);
~~~~~^~~~~~~~~~~