write a programme to get a character and thier ASCII value
No Answer is Posted For this Question
Be the First to Post Answer
Can a program run without main function?
What are the new features that iso/ansi c++ has added to original c++ specifications?
What is a template in c++?
What is c++ iterator?
What things would you remember while making an interface?
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
Can we inherit constructor in c++?
What is class invariant?
Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL
Can you sort a set c++?
Which function cannot be overloaded c++?
What do you mean by a template?