which of the function operator cannot be over loaded
a) <=
b)?:
c)==
d)*
Answer Posted / sahithya
overload concept will face in C++ i.e., if we declare a
same function with different times .
In c we dont have any overloadind concept .
ofcourse by seing the options we can say easily that
options will need of 3 or 2 operands compulsory.so
overloading does not occur
Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
How pointer is different from array?
What are header files in c programming?
Why we use conio h in c?
With the help of using classes, write a program to add two numbers.
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
How does sizeof know array size?
Can you mix old-style and new-style function syntax?
Is Exception handling possible in c language?
What is the purpose of & in scanf?
How macro execution is faster than function ?
How many keywords (reserve words) are in c?
What are the properties of union in c?
What are the preprocessor categories?
Explain what is the difference between functions getch() and getche()?