secret.cpp: In function 'void daq(int, int, int)':
secret.cpp:24:5: error: 'da1' was not declared in this scope; did you mean 'daq'?
24 | da1(i+1,m+1,r);
| ^~~
| daq
secret.cpp: In function 'void Innit(int, int*)':
secret.cpp:48:21: error: expected primary-expression before ';' token
48 | for(int i=0;i<N;;i++)
| ^
secret.cpp:48:21: error: expected ')' before ';' token
48 | for(int i=0;i<N;;i++)
| ~ ^
| )
secret.cpp:48:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
48 | for(int i=0;i<N;;i++)
| ^~~
secret.cpp:48:22: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
48 | for(int i=0;i<N;;i++)
| ^
secret.cpp:48:22: error: 'i' was not declared in this scope
secret.cpp:52:21: error: expected ';' before ')' token
52 | for(int i=0;i<12)
| ^
| ;
secret.cpp: In function 'int Query(int, int)':
secret.cpp:60:14: warning: left operand of comma operator has no effect [-Wunused-value]
60 | return(0,l,r);
| ^
secret.cpp:60:18: warning: right operand of comma operator has no effect [-Wunused-value]
60 | return(0,l,r);
| ^