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
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
how many errors in c explain deply
I heard that you have to include stdio.h before calling printf. Why?
What is volatile variable how do you declare it?
How do you convert strings to numbers in C?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
Is anything faster than c?
What is pragma in c?
When is a “switch” statement preferable over an “if” statement?
Is c object oriented?
Explain what is wrong with this program statement?
What is an identifier?
how to execute a program using if else condition and the output should enter number and the number is odd only...
What is new line escape sequence?
Why can't I perform arithmetic on a void* pointer?