which of the function operator cannot be over loaded
a) <=
b)?:
c)==
d)*
Answer Posted / muthu bharathi
There are 5 operators which cannot be overloaded. They are:
.* - class member access operator
:: - scope resolution operator
. - dot operator
?:: - conditional operator
Sizeof() - operator
answer: b
Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
I need previous papers of CSC.......plz help out by posting them.......
What is the use of a static variable in c?
Which type of language is c?
What is optimization in c?
Why do some versions of toupper act strangely if given an upper-case letter?
How can I discover how many arguments a function was actually called with?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
How do you define a function?
Explain indirection?
What is the value of uninitialized variable in c?
Is it better to bitshift a value than to multiply by 2?
what is the function of pragma directive in c?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
what do you mean by enumeration constant?
What is dynamic dispatch in c++?