I can do this:
Yet this causes an error during compilation:
It says "error C2440: cannot convert from 'const int' to 'int *' ( new behavior; please see help )"
I checked the error definition from the CD; it has examples
for why the error would show, but not any for my example.
I suppose there's a full manual for the compiler...probably take 2 months to read it.
Code:
int *a_pointer;
Yet this causes an error during compilation:
Code:
int *a_pointer = 2369;
I checked the error definition from the CD; it has examples
for why the error would show, but not any for my example.
I suppose there's a full manual for the compiler...probably take 2 months to read it.