Find ASCII Value of a Character in C++

Advertisements

Find Cube Root in C++ Find Sum of Digit in C++

C++ Program to Find ASCII Value of a Character

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

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

int main(void)
{
   int number, result;
   clrscr();
   cout<<"Enter any Character/Symbol/Digits: ";
   number = getch();
   result = toascii(number);
   cout<<"Ascii value: "<<result;
   getch();
}

Output

Enter any Character/Symbol/Digits:a
Ascii value: 97

Code 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

#include<stdio.h>
#include<conio.h>
void main()
{
int value;
clrscr();
   cout<<"Enter any Character/Symbol/Digits: ";
value=getch();
cout<<"Ascii value: "<<value;
getch();
}

Output

Enter any Character/Symbol/Digits:a
Ascii value: 97

Code Explanation

getch() is a predefined function in "conio.h" header file which take or receive one value from keyboard.


Find Cube Root in C++ Find Sum of Digit in C++

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