Alice.cpp: In function 'void Alice(int, int, int*, int*)':
Alice.cpp:7:21: error: 'm' was not declared in this scope
7 | for(int i = 0; i < m; i++) MakeG(A[i], B[i]);
| ^
Alice.cpp:7:45: error: too few arguments to function 'void MakeG(int, int, int)'
7 | for(int i = 0; i < m; i++) MakeG(A[i], B[i]);
| ^
In file included from Alice.cpp:1:
Alicelib.h:3:6: note: declared here
3 | void MakeG( int pos, int C, int D );
| ^~~~~
Alice.cpp:10:30: error: too few arguments to function 'void MakeG(int, int, int)'
10 | MakeG(A[i], j + N);
| ^
In file included from Alice.cpp:1:
Alicelib.h:3:6: note: declared here
3 | void MakeG( int pos, int C, int D );
| ^~~~~