1)which of following operator can't be overloaded.
a)== b)++ c)?! d)<=

Answer Posted / rajesh

D

Is This Answer Correct ?    5 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the preprocessor categories?

639


What is meant by gets in c?

609


What are keywords in c with examples?

604


Explain the concept and use of type void.

628


When we use void main and int main?

588






Explain how do you print an address?

659


What is function prototype in c language?

612


Can you please explain the scope of static variables?

600


A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?

1777


Is c pass by value or reference?

595


Explain the difference between exit() and _exit() function?

634


What are qualifiers and modifiers c?

549


How do I send escape sequences to control a terminal or other device?

613


what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9

1428


#include int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

1263