What is the array and initializing arrays in c++?
No Answer is Posted For this Question
Be the First to Post Answer
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
Write a String class which has: 1) default constructor 2) copy constructor 3) destructor 4) equality operator similar to strcmp 5) constructor which takes a character array parameter 6) stream << operator
2 Answers HCL, Lehman Brothers, Zoomerang,
What is searching?
In which memory a class gets stored(in heap /in stack)? And why??
What is a flag in c++?
Difference between struct and class in terms of access modifier.
Will the inline function be compiled as the inline function always? Justify.
give me some class & objects examples?
Write about the various sections of the executable image?
class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.
Write a program to reverse a linked list?
8 Answers Catalytic Software, Satyam,
difference between macro and function?