C examples for Language Basics:printf
What output would you expect from the following program, char and printf()?
#include <stdio.h> int main (void) { char c, d; /*from ww w .j a v a2s . c om*/ c = 'd'; d = c; printf ("d = %c\n", d); return 0; }