After magic it should be two sets of brackets to declare the array with the
size inside them. Like the following except with brackets and not parentheses
int magic(size)(size);
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am not sure the following code snippet should work:
int size;
cout << "Enter size of Magic Square (must be an odd number):" << endl << endl;
cin >> size;
int magic;
Have ANSI compliant compilers always supported this? I know it doesn't work
with Microsoft. So, which is correct DevC++ or Visual C++
Sorry the brackets don't show on this forum
After magic it should be two sets of brackets to declare the array with the
size inside them. Like the following except with brackets and not parentheses
int magic(size)(size);