EX:
const int SIZE = 10;
int arr[SIZE];
vs
int SIZE = 10;
int arr[SIZE];
Even though the compiler doesn't seem to show any errors in the run time.
EX:
const int SIZE = 10;
int arr[SIZE];
vs
int SIZE = 10;
int arr[SIZE];
Even though the compiler doesn't seem to show any errors in the run time.