Program to use putchar() on the place of printf


#include<stdio.h>
#include<conio.h>

main()
{
      int c;
      printf("\nType any character : ");
      c=getchar();
      putchar(c);
      getch();
}

Comments

Popular posts from this blog

Customize User's Profile in ASP.NET Identity System

Migrating database from ASP.NET Identity to ASP.NET Core Identity