Monday, 5 June 2017

c - Getting an overflow when creating an integer array?

I am getting an overflow for using this.
int x[471][640];
Someone told me to use Malloc? I have no idea what that is. Its not in my book nor my lectures. Any fix to this?

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...