Answers for "how to print a character with its ascii value in c++"

2

how to print a character with its ascii value in c++

//It is almost know to everybody , how to print an ASCII code of a character.
#include <bits/stdc++.h>
using namespace std;
int main()
{
	int var=65;
	cout<<(char)var<<endl; //By this way, you can get the character with that mentioned ASCII code.
	return 0;
}
Posted by: Guest on June-05-2021
10

c++ get ascii value of char

#include<iostream>
using namespace std;
int main ()
{
    char c;
    cout << "Enter a character : ";
    cin >> c;
    cout << "ASCII value of " << c <<" is :  " << (int)c;
    return 0;
}
Posted by: Guest on June-24-2020

Code answers related to "how to print a character with its ascii value in c++"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language