char a; int b; char c; a = 'x'; b = a + 1; c = b; printf( "a = %c, b = %d, c = %c\n", a, b, c );