Answers for "ascii c++ library"

C++
1

ascii cpp

#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 August-17-2021
1

C++ ASCII Value

//Find the ASCII value of a character and character of an ASCII value.
    char x;
    int y;

    cout<<"Enter a Character: ";
    cin>>x;
    cout<<"Enter the ASCII value: ";
    cin>>y;
    cout<<"The ASCII value of "<<x<<" is "<<int(x)<<endl;
    cout<<"The Character of the ASCII value of "<<y<<" is "<<char(y);
Posted by: Guest on March-13-2022

Browse Popular Code Answers by Language