printf( "Testing printing of variables (implicit use of & and ptr+int):\n" ); int a = 200; char c = 'y'; ^char s = "got it!"; printf( "a = %d, c = \'%c\', s = \"%s\"\n", a, c, s );