What are all predefined data types in c++?
Is arr and &arr are same expression for an array?
What is cout flush?
what you know about c++?
Is there a new/delete equivalent of realloc?
What is the size of integer variable?
What is c++ hash?
Explain what happens when a pointer is deleted twice?
When is a template a better solution than a base class?
If a round rectangle has straight edges and rounded corners, your roundrect class inherits both from rectangle and from circle, and they in turn both inherit from shape, how many shapes are created when you create a roundrect?
Where and why do I have to put the "template" and "typename" keywords?
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
How would you use qsort() function to sort an array of structures?