C examples for Data Type:char
Use putchar() function to output character
#include <stdio.h> int main( void ) { int count;// w ww . j ava 2 s. c om for (count = 14; count < 128; ) putchar(count++); return 0; }