which of the function operator cannot be over loaded
a) <=
b)?:
c)==
d)*
Answer Posted / anas
In 'C' there is no concept of overloading.
If we talks about C++ then TRINARY operator (? : ) cant be over loaded.
So, only the option (b) is correct.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How many types of operator or there in c?
What is the use of define in c?
Why we use int main and void main?
What is c programming structure?
How can I change the size of the dynamically allocated array?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
Why is c called a structured programming language?
Should I learn c before c++?
What does s c mean on snapchat?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
How do we declare variables in c?
Explain enumerated types in c language?
Is it fine to write void main () or main () in c?
What are integer variable, floating-point variable and character variable?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop