what is data abstraction in C++?
No Answer is Posted For this Question
Be the First to Post Answer
What about Virtual Destructor?
What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };
write a program to insert an element into an array
What is object file? How can you access object file?
How can you quickly find the number of elements stored in a static array? Why is it difficult to store linked list in an array?
simple c++ program for "abcde123ba" convert "ab321edcba" with out using string
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.
What is stack unwinding?
What is different in C++, compare with unix?
What is expression parser in c++
What are pointer-to-members in C++? Give their syntax.
write asingle linked list which read from two list & the do the following 1 sort the prime & nonprime num (prime should be less tn nonprime) 2 each node has a prime num followd by nonprime 3 add a new node into its sutable plce 4 erase the most three duplicated non prime num 5 find the least duplicated prime num