Answer Posted / akanksha
bjarne stroustrup
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
What is string in c++ programming?
Explain the virtual inheritance in c++.
What is double in c++?
Explain about templates of C++.
What is the full form of stl in c++?
What are its advantages and disadvantages of multiple inheritances (virtual inheritance)?
What do you mean by static variables?
What are the advantages of c++?
How did c++ start?
What is an incomplete type in c++?
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
Can you explicitly call a destructor on a local variable?
What is constructor and destructor in c++?
What is istream c++?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);