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

fn f(x) { if(x<=0) return; else f(x-1)+x; }

5 Answers   HCL,


#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }

7 Answers   HCL,


write a program to swap two variables a=5 , b= 10 without using third variable

5 Answers  


What are the advantages and disadvantages of a heap?

0 Answers  


Explain void pointer?

0 Answers  






Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol

0 Answers  


Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.

1 Answers  


What is a constant and types of constants in c?

0 Answers  


What is table lookup in c?

0 Answers  


YBJBU6

1 Answers  


How to declare pointer variables?

0 Answers  


What is string in c language?

0 Answers  


Categories