0
Write a C++ program to display ASCII code of a character? urgent
6 odpowiedzi
+ 2
#include <iostream>
using namespace std;
int main()
{
int a;
a='a';
cout <<a;
return 0;
}
+ 1
first declare an int then equal it to char like this
int a;
a = 'a';
cout << a;
+ 1
can you please give me the program.
+ 1
I gave you a pattern go on
i dont have access to my pc sorry.
+ 1
Tnx a lot bro!
0
@Abhishek youre welcome