Please list all the unary and binary operators in C.
Answer Posted / 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 |
Post New Answer View All Answers
What are the advantages of the functions?
What are the types of assignment statements?
What is array in c with example?
What does 1f stand for?
Explain enumerated types.
Explain what are multidimensional arrays?
write a c program for swapping two strings using pointer
What is difference between static and global variable in c?
Give me the code of in-order recursive and non-recursive.
Explain what math functions are available for integers? For floating point?
What are conditional operators in C?
What are logical errors and how does it differ from syntax errors?
Why is c called c not d or e?
What is static and auto variables in c?
What is scope and lifetime of a variable in c?