ASCII :- ASCII was developed from telegraph code. Its first commercial use was as a seven-bit teleprinter code promoted by Bell data services. Work on the ASCII standard began on October 6, 1960, with the first meeting of the American Standards Association's (ASA) (now the American National Standards Institute or ANSI) X 3.2 subcommittee. The first edition of the standard was published in 1963.
Full Form of ASCII Is ( American Standard Code for Information Interchange). Source Wikipedia
For ASCII Table Click Here
See Also :- C Program To Print ASCII Value Of Character
Solution :-
#include<iostream>
using namespace std;
int main()
{
/*Program By Ghanendra Yadav
Visit http://www.programmingwithbasics.com/
*/
char a;
int b;
cout<<"Enter The Character ";
cin>>a;
b=a;
cout<<b<<endl;
}
Full Form of ASCII Is ( American Standard Code for Information Interchange). Source Wikipedia
For ASCII Table Click Here
See Also :- C Program To Print ASCII Value Of Character
Solution :-
#include<iostream>
using namespace std;
int main()
{
/*Program By Ghanendra Yadav
Visit http://www.programmingwithbasics.com/
*/
char a;
int b;
cout<<"Enter The Character ";
cin>>a;
b=a;
cout<<b<<endl;
}
See Also :- Java Program To Print ASCII Value Of Character
0 Comments: