I have 2 int\'s. How do I divide one by the other and then round up afterwards?
What about:
float A,B; // this variables have to be floats! int result = floor(A/B); // rounded down int result = ceil(A/B); // rounded up