What is c++ programming language?
No Answer is Posted For this Question
Be the First to Post Answer
What happens when you make call 'delete this;'?
What are 2 ways of exporting a function from a dll?
What is difference between array and vector in c++?
what are Access specifiers in C++ class? What are the types?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
Difference between delete and free.
How do you establish a has-a relationship?
What are the steps in the development cycle?
Explain deep copy?
If we declare two macro with the same identifier without doing undef the first, what will be the result? eg: #define MAX_SIZE 100 #define MAX_SIZE 200 int table1[MAX_SIZE];
Is c++ vector dynamic?
What are vtable and vptr?