how to access grid view row?
What is object slicing and how can we prevent it?
What is the equivalent of Pascal's Real a) unsigned int b) float c) char
What is an opaque pointer?
Is java a c++?
Explain selection sorting. Also write an example.
When is the last time you coded in C/C++? What is the most lines of original C/C++ code you have personally written in one project? How confident are you in your ability to write C or C++ without a reference?
What is iterator 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"?
Define basic type of variable used for a different condition in C++?
Are strings mutable in c++?
how is returning structurs from functions?Show an eg?
In how many ways we can initialize an int variable in C++?