Please list all the unary and binary operators in C.

Answers were Sorted based on User's Feedback



Please list all the unary and binary operators in C...

Answer / kuldeep singh

unary operatos are increment(++),decrement(--),minus(-)
,ampersand(&)negation(!),sizeof(),pointer referance
(*),one's complement(~).......
and binary operatos are +,*,%,/,<,>,=,AND(&&),OR
(||),assigment operator(==),inequility(>=,<=)

Is This Answer Correct ?    32 Yes 3 No

Please list all the unary and binary operators in C...

Answer / shiva shankar shukla

> AND OR XOR NOT

Is This Answer Correct ?    1 Yes 4 No

Please list all the unary and binary operators in C...

Answer / jai tushar

assignment operator (=)

Is This Answer Correct ?    1 Yes 8 No

Post New Answer

More C Interview Questions

What is static and volatile in c?

0 Answers  


code for inverse a matrix

0 Answers  


What is a 'null pointer assignment' error?

0 Answers  


Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort

7 Answers  


What is the difference between a function and a method in c?

0 Answers  


f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed

5 Answers  


What is the restrict keyword in C?

2 Answers  


WHAT IS ABSTRACT DATA TYPE

4 Answers   Wipro,


Is c procedural or object oriented?

0 Answers  


What are the advantages of using linked list for tree construction?

0 Answers  


What is the most efficient way to store flag values?

0 Answers  


Write a routine that prints out a 2-D array in spiral order!

1 Answers   Lucent,


Categories