Im dividing 2 double values with this code:
float final = cw / q ;
label.text = [NSString stringWithFormat:@"%g", final];
this code works perfectly but the how can i move the decimal point two spaces to the right.
Like this: .500000 to 50.000 or just 50
Thanks