I have an NSUInteger and i want to divide it by 100. So lets say i have the number 1 in an NSUInteger i want to divide it by 100 and get 0.01 as the result.
(float) percent / 100
percent is an NSUInteger
|
I have an NSUInteger and i want to divide it by 100. So lets say i have the number 1 in an NSUInteger i want to divide it by 100 and get 0.01 as the result.
percent is an NSUInteger |
|||||||
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
When dividing two integers, the result will be an integer. Make one of them a float (the constant is typical)
|
|||||||
|
|
Your example looks fine since you are casting
|
||||
|
|