Can we change the basic meaning of an operator in c++?


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

Post New Answer

More C++ General Interview Questions

What is multithreading and what is its use?Whats are multithreading techniques used in C++?

1 Answers  


Why do we use classes in programming?

0 Answers  


What is endl?

0 Answers  


Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?

0 Answers  


What is a memory leak c++?

0 Answers  






What is the difference between C and CPP?

0 Answers   iNautix,


Is it possible to pass an object of the same class in place of object reference to the copy constructor?

0 Answers  


How delete [] is different from delete?

0 Answers  


Explain how would you handle a situation where you cannot call the destructor of a local explicitly?

0 Answers  


class professor {}; class teacher : public virtual professor {}; class researcher : public virtual professor {}; class myprofessor : public teacher, public researcher {}; Referring to the sample code above, if an object of class "myprofessor" were created, how many instances of professor will it contain? a) 0 b) 1 c) 2 d) 3 e) 4

4 Answers   Quark,


How do you allocate and deallocate memory in C++?

1 Answers  


What is the basic difference between C and C++?

0 Answers   NIIT,


Categories