Find ascii Value of Number in C

Advertisements

Prev Tutorial Next Tutorial

Find Ascii Value of Any Number Program in C

Full form of Ascii is American Standard Code for Information Interchange. Ascii is a character-encoding scheme. Originally based on the English alphabet, every character or number have its own Ascii value for example Ascii value of a is 97.

Find Ascii Value of Number using Library Function

C Program to Find Ascii Value of Number

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

int main(void)
{
   int number, result;
   clrscr();
   printf("Enter any Character/Symbol/Digits: ");
   number = getch();
   result = toascii(number);
   printf("\nAscii value of  %c is %d\n", number, result);
   getch();
}

Output

Enter any Character/Symbol/Digits: e
Ascii value of e is 101

Ascii Program Explanation

  • Here toascii is a predefined function in "ctype.h" header file which gives or return Ascii value of any given value.
  • getch is a predefined function in "conio.h" header file which take or receive one value from keyboard.

Find ascii value of number without using library function

Program to find ascii value of number

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

void main()
{
int value;
clrscr();
printf("Enter any Character/Symbol/Digits: ");
value=getch();
printf("\n\Ascii value of %c is %d",value,value);
getch();
}

Output

Enter any Character/Symbol/Digits:a
Ascii value of e is 97

Ascii Program Explanation

  • getch is a predefined function in "conio.h" header file which take or receive one value from keyboard.
  • Here %c print the given or entered value by user which received by getch and %d print equivalent ascii code.

Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements