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
What is meant by keywords in c?
What is the difference between ++a and a++?
How do we open a binary file in Read/Write mode in C?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What are dangling pointers? How are dangling pointers different from memory leaks?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Who invented b language?
Suggesting that there can be 62 seconds in a minute?
What is scope rule in c?
What is a constant?
What is the benefit of using const for declaring constants?
Describe newline escape sequence with a sample program?
How can you find the day of the week given the date?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
What are qualifiers and modifiers c?