write a programme to get a character and thier ASCII value
No Answer is Posted For this Question
Be the First to Post Answer
What is a storage class? Mention the storage classes in c++.
What is the best c++ ide?
Is c++ free?
Is oops and c++ same?
How would you use the functions memcpy(), memset(), memmove()?
What is struct c++?
What is the difference between cin.read() and cin.getline()?
what do you mean by memory management operators
What size is allocated to the union variable?
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;
Can you explicitly call a destructor on a local variable?
Can the creation of operator** is allowed to perform the to-the-power-of operations?