Can I learn c++ as my first language?
No Answer is Posted For this Question
Be the First to Post Answer
What are the difference between reference variables and pointers in C++?
what is an array
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"?
What does 7/9*9 equal ? a) 1 b) 0.08642 c) 0
What is the sequence of destruction of local objects?
What is const in c++?
Can we use clrscr in c++?
What are the 2 main types of data structures?
How do you show the declaration of a virtual constructor?
A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
What do the keywords volatile and mean mutable?
What are c++ tokens?