CGFloat a = 5.55;double b = 2.22;//CGFloat is double on 64-bit and//float on 32-bit platforms: cast//explicitly for arithmeticdouble result = (double)a + b;//result is 7.77