@meyou: Just make sure c initial value is not y or z then it will increment to junk characters. – Nikhil AgrawalMay 14 '12 at 12:27
thanks i did took care of that – ProgramerMay 14 '12 at 12:31
hmm I wonder why char c = 'a' + (char)2; gives a compilation error? – AndyJan 25 at 22:31
1
You can do char c = (char)('a' + 2); instead – juergen dJan 26 at 10:48
@Andy the reason this happens is because any operation on byte-sized integers has implicit conversion to int - i.e. 'a' + 2 is really (int)'a' + 2 and so you need to cast it back. IIRC, this is a C++ backwards-compatibility thing but there's quite a bit of discussion on this question: stackoverflow.com/questions/941584/byte-byte-int-why – Rob ChurchMay 8 at 14:05