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


Please Help Members By Posting Answers For Below Questions

Explain why C language is procedural?

945


Explain what is operator promotion?

813


Explain why can’t constant values be used to define an array’s initial size?

1067


When should structures be passed by values or by references?

794


Explain what standard functions are available to manipulate strings?

793






Explain how many levels deep can include files be nested?

796


How can type-insensitive macros be created?

895


What are header files in c?

799


How is null defined in c?

846


Explain do array subscripts always start with zero?

929


Who is the founder of c language?

862


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); } }

2228


Why header file is used in c?

748


Is null always equal to 0(zero)?

774


What is pass by value in c?

756