How to find ASCII Value of any character
Coding:
#include<iostream> using namespace std; int main() { char ch; cout<<"\nEnter any character : "; cin>>ch; cout<<"ASCII equivalent is : "<<static_cast<int>(ch); return 0; }
< Back
Bsit Special | Bsit past papers for all semester | Books for bsit | Notes For bsit for all semester| C++ Questions and Answer| Cpp/C++ full course in urdu/hindi | Java| Python| Html | Online C++ Mcqs| Programs in c++ |BSCS BSSE BSIT Past Papers | bs programs past papers And notes for all semester |Online c++ quiz Answer And questions|
#include<iostream> using namespace std; int main() { char ch; cout<<"\nEnter any character : "; cin>>ch; cout<<"ASCII equivalent is : "<<static_cast<int>(ch); return 0; }
Post a Comment