Header Ads Widget

How to print any Character without using formate specifier..

Here we use a function putchar() which is directaly convert  the ascii value into character..


#include<stdio.h>
void main()
{
putchar(99);
}

output:-

c