I was writing some code in C++. At a certain point (line 44:cout << commands_help[i];) it says there is an error: "Subscripted value is not an array"... In fact I used a list, not an array... In the function "help()" I print every item of listcommands_helpwith\nbetween ...
In 'drawVertex' function of 'mijnTest.c' file, there is an error at line 43 where 'vertex[i][j-1]' is trying to access 'shape[i][j]', but it is giving an error of "subscripted value is neither array nor pointer nor vector". Additionally, in 'drawScene' function at line 69,...