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 |
How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?
What do you mean by static variables?
What is the output of the following program? Why?
What is the c++ programming language used for?
What is the function of I/O library in C++ ?
C is to C++ as 1 is to a) What the heck b) 2 c) 10
What is the difference between structures and unions?
Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;
If you don’t declare a return value, what type of return value is assumed?
What is the difference in size of this two clasees? Class A { int a; char c; float f; } Class B { float f; char c; int a; }
Describe linked list using C++ with an example.
What's the order in which the objects in an array are destructed?