char charA = 'A';int intValue = charA;//intValue is 65char charB = ++charA;//charB is "B"NSLog(@"%i, %c", intValue, charB);