Answers for "how to use ascii in c++"

C++
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
0

ascii allowed in c++

#include <iostream>
int main()
{
  std::cout << "Printable ASCII [32..126]:n";
  for (char i = ' '; i <= '~'; ++i) {
    std::cout << i << ((i % 16 == 15) ? 'n' : ' ');
  }
}
Posted by: Guest on April-01-2021
0

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
0

get ascii value of string in C++

int main()
{
 char *s="hello";
 while(*s!='')
  {
  printf("%c --> %dn",*s,*s);
  s++;
  }
 return 0;
}
Posted by: Guest on December-29-2020

Browse Popular Code Answers by Language