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 |
how to reverse string "Hello World" by using pointers only. Without any temp var
What are c identifiers?
What is the purpose of #pragma directives in C?
Write a program of advanced Fibonacci series.
what is linkage error when it occurs in c program
write a c program to find largest of three numbers using simple if only for one time.
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Explain how do you list files in a directory?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
What header files do I need in order to define the standard library functions I use?
What is the difference between malloc() and calloc()?
How to add two numbers without using semicolon n c????