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 |
What is function overloading c++?
How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?
Does improper inheritance have a potential to wreck a project?
How is new() different from malloc()?
What is vector string in c++?
When does a name clash occur in c++?
What is private public protected in c++?
What is ofstream c++?
Define a program that reads two matrices of size 3x3 with real values from the user then prints their sum, difference and multiplication.
What is an adaptor class or Wrapper class?
What does namespace mean in c++?
Write a program to encrypt the data in a way that inputs a four digit number and replace each digit by (the sum of that digit plus 7) modulus 10. Then sweep the first digit with the third, second digit with the fourth and print the encrypted number.