What is the difference between equal to (==) and assignment operator (=)?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is an adaptor class or wrapper class in c++?

0 Answers  


What is the main function c++?

0 Answers  


You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. New() and malloc()

0 Answers  


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.

2 Answers   Quark,


If all is successful, what should main return a) 0 b) 1 c) void

0 Answers  






How much do c++ programmers make?

0 Answers  


Explain one method to process an entire string as one unit?

0 Answers  


What is type of 'this' pointer?

0 Answers  


Can you declare an array without a size in c++?

0 Answers  


Write a Program for dynamically intialize a 2 dimentional array. Eg:5x20, accept strings and check for vowels and display the no.finally free the space allocated .

0 Answers  


What is singleton class in c++?

0 Answers  


Why is it difficult to store linked list in an array?

6 Answers   Infosys, Lucent,


Categories