Do you need a main function in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between realloc() and free().
What is the difference between global int and static int declaration?
What are associate containers?
What is data structure in c++?
Write about the role of c++ in the tradeoff of safety vs. Usability?
Can we generate a C++ source code from the binary file?
What is an incomplete type in c++?
What are the strengths of C++?
whats the size of class EXP on 32 bit processor? class EXP { char c1; char c2; int i1; int i2; char *ptr; static int mem; };
When should we use multiple inheritance?
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"?
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