Find the ASCII value of a number


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

void main()
{
  char input;
  printf(enter an input to get ascii of input);
  scanf(%c,&input);
  printf(n ascii of input %c is %d,input,input);
  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