Please list all the unary and binary operators in C.
Answers were Sorted based on User's Feedback
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 |
What is static and volatile in c?
code for inverse a matrix
What is a 'null pointer assignment' error?
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
What is the difference between a function and a method in c?
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
What is the restrict keyword in C?
WHAT IS ABSTRACT DATA TYPE
Is c procedural or object oriented?
What are the advantages of using linked list for tree construction?
What is the most efficient way to store flag values?
Write a routine that prints out a 2-D array in spiral order!