Say I've got
SDL_Rect rect;
rect.x = 5; // rect.x is of type "Uint16"
int y = 11;
and I want to perform the operation rect.x/y.
I want to get the result as a floating point number and then round up to the nearest int.
Something like this:
float result = rect.x/y;
int rounded = ceil(result);
How should I do this?
ceil. Probably an invalid pointer use somewhere else in the program. – aschepler Nov 15 '12 at 4:50