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

program to find the second largest word in a paragraph amongst all words that repeat more thn twice

4 Answers   CTS, iGate,


What is the meaning of 2d in c?

0 Answers  


What is the difference between getch() and getche()?

1 Answers   NSPL,


Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates

3 Answers  


If fflush wont work, what can I use to flush input?

0 Answers  






difference between semaphores and mutex?

1 Answers  


What is linear search?

0 Answers  


What is graph in c?

0 Answers  


How a string is stored in c?

0 Answers  


In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none

0 Answers  


#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }

2 Answers  


What is difference between Structure and Unions?

0 Answers   TISL,


Categories