I'd like to make array from variable size as following.
int buff_size = width*height*3;
unsigned char buffer[buff_size];
but I've got an error message like this:
mfc_test5Dlg.cpp(418): error C2057: expected constant expression
How can I make variable size array?