how do you divide two integers and get a decimal answer? in xcode..
the only thing i could was find http://www.gnu.org/s/libc/manual/html_node/Integer-Division.html
this method will not allow me to have a decimal answer...
|
how do you divide two integers and get a decimal answer? in xcode.. the only thing i could was find http://www.gnu.org/s/libc/manual/html_node/Integer-Division.html this method will not allow me to have a decimal answer...
| |||||
feedback
|
|
You need to cast one or the other to a
Of course, make sure that you are store the result of the division in a Regarding @Chad's comment (" Don't pass a double or float to For example, on my system, the file:
outputs: 1374389535 because the double was attempted to be read as an int. | |||||||||
feedback
|