What is the C-style character string?
No Answer is Posted For this Question
Be the First to Post Answer
What is array in c++ pdf?
What are the advantages of pointers?
How can I disable the "echo" feature?
Explain how overloading takes place in c++?
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"?
char *ch = "abcde"; char c[4]; how to copy 'ch' to 'c'?
Define namespace in c++?
How does java differ from c and c++?
Explain about Garbage Collector?
What do you mean by a template?
What are friend functions?
What are the three forms of cin.get() and what are their differences?