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
Explain why C language is procedural?
Explain what is operator promotion?
Explain why can’t constant values be used to define an array’s initial size?
When should structures be passed by values or by references?
Explain what standard functions are available to manipulate strings?
Explain how many levels deep can include files be nested?
How can type-insensitive macros be created?
What are header files in c?
How is null defined in c?
Explain do array subscripts always start with zero?
Who is the founder of c language?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Why header file is used in c?
Is null always equal to 0(zero)?
What is pass by value in c?