which of the function operator cannot be over loaded
a) <=
b)?:
c)==
d)*
Answer Posted / ruchi
Overloading is the concept of c++
In c++ ?: cant be overloaded
| Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Is sizeof a keyword in c?
what will be maximum number of comparisons when number of elements are given?
Can you subtract pointers from each other? Why would you?
What is 'bus error'?
When do we get logical errors?
using only #include
What is a macro in c preprocessor?
Under what circumstances does a name clash occur?
What is formal argument?
What are the Advantages of using macro
What is the difference between a string and an array?
How can you read a directory in a C program?
Why c is a mother language?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }