to find the ASCII code of character
#include <iostream>
using namespace std;
int main()
{
char ch;
int asc;
cout<<"Enter the character:";
cin>> ch;
asc= ch;
cout <<"ASCII of "<<ch<<" = "<< asc;
return 0;
}
Answers
Answered by
2
Answer:
bro I know python if u have any doubts ask me in python
Similar questions
Social Sciences,
3 months ago
Computer Science,
3 months ago
English,
3 months ago
Math,
6 months ago
Math,
6 months ago
Math,
1 year ago
Geography,
1 year ago