Which operator can not be overloaded in C++?
The only C operators that can't be are . and ?: (and sizeof , which is technically an operator). C++ adds a few of its own operators, most of which can be overloaded except :: and . * .
| Is This Answer Correct ? | 0 Yes | 0 No |
Does defining a function inline mean that it wont push and pop things on/off the stack ...like parameters and the return the address??
What is the protected keyword used for?
Write a program which uses functions like strcmp(), strcpy()? etc
Can constructor be private in c++?
What are the two types of comments, and how do they differ?
Can we make copy constructor private in c++?
What are smart pointer? Whats its use?
List out some of the OODBMS available?
What is the maximum value of a unsigned char a) 255 b) 256 c) 128
How do you define a class in c++?
how can u create a doubly linked list with out using pointers?
what is oops