colouring.cpp:18:45: error: extended character is not valid in an identifier
18 | for (int iCol = 0; iCol < nbCols; iCol ++) {
| ^
colouring.cpp: In function 'int main()':
colouring.cpp:18:45: error: '\U000000a0' was not declared in this scope
18 | for (int iCol = 0; iCol < nbCols; iCol ++) {
| ^
colouring.cpp:21:26: error: 'iCol' was not declared in this scope
21 | printf("%ld\n", grille[iCol]);
| ^~~~
colouring.cpp:17:8: warning: unused variable 'somme' [-Wunused-variable]
17 | long somme = 0;
| ^~~~~