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

Answers were Sorted based on User's Feedback



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

Answer / rohit

ans is C

Is This Answer Correct ?    82 Yes 4 No

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

Answer / nandhini

Which operators can be overloaded?

* The following operators can be overloaded:

1. Unary operators:

+ - * & ~ ! ++ -- -> ->*
2. Binary operators:

+ - * / % ^ & | << >>
+= -= *= /= %= ^= &= |= <<= >>=
< <= > >= == != && ||
, [] ()
new new[] delete delete[]

so c option is correct

Is This Answer Correct ?    14 Yes 1 No

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

Answer / kamaljit singh

c

Is This Answer Correct ?    14 Yes 2 No

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

Answer / jignesh

ans is c....write

Is This Answer Correct ?    13 Yes 2 No

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

Answer / suganya

Ans is (c)

Is This Answer Correct ?    10 Yes 3 No

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

Answer / ruchi

c

Is This Answer Correct ?    9 Yes 4 No

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

Answer / tanzia.1989

c)?!

Is This Answer Correct ?    3 Yes 0 No

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

Answer / sunil

C

Is This Answer Correct ?    2 Yes 0 No

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

Answer / rajesh

D

Is This Answer Correct ?    5 Yes 5 No

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

Answer / ee

d

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More C Interview Questions

#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

0 Answers   Wilco,


What are the different types of errors?

0 Answers  


How to reverse a string using a recursive function, with swapping?

5 Answers  


How does pointer work in c?

0 Answers  


hi, which software companys will take,if d candidate's % is jst 55%?

0 Answers  






consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none

7 Answers   TCS,


Explain how can you restore a redirected standard stream?

0 Answers  


What is pointers in c with example?

0 Answers  


How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?

0 Answers  


What do you mean by c what are the main characteristics of c language?

0 Answers  


#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }

9 Answers   TCS,


What is the g value paradox?

0 Answers  


Categories