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 is New modifiers?
What's the best way of making my program efficient?
Write a simple code fragment that will check if a number is positive or negative.
Can a variable be both constant and volatile?
How many keywords are there in c?
How do c compilers work?
Can you please explain the scope of static variables?
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
Why & is used in c?
number of times a digit is present in a number
What header files do I need in order to define the standard library functions I use?
What are preprocessor directives in c?
What is || operator and how does it function in a program?
What is huge pointer in c?