Can create new c++ operators?


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

Post New Answer

More C++ General Interview Questions

Implement strncpy

3 Answers  


Are there interfaces in c++?

0 Answers  


What is the copy-and-swap idiom?

0 Answers  


Is c++ used anymore?

0 Answers  


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"?

6 Answers   CSC,


Explain terminate() and unexpected() function?

0 Answers  


What does the linker do?

0 Answers  


Write is a binary search tree? Write an algo and tell complexity?

0 Answers   Axtria,


int *p = NULL; printf("%1d",p) ; what will be the output of this above code?

3 Answers   Microsoft,


What does the ios::ate argument do?

0 Answers  


Which one of the following describes characteristics of "protected" inheritance? a) The base class has access only to the public or protected members of the derived class. b) The derived class has non-public, inheritable, access to all but the private members of the base class. c) The derived class has access to all members of the base class. d) The private members of the base class are visible within the derived class. e) Public members of the derived class are privately accessible from the base class.

4 Answers   Quark,


class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;

1 Answers   Quark,


Categories