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
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
What are the application of c?
How does sizeof know array size?
what will be maximum number of comparisons when number of elements are given?
What is character set?
How can I manipulate individual bits?
Write a program which returns the first non repetitive character in the string?
When should you not use a type cast?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is a structural principle?
What is wild pointer in c?
Where static variables are stored in memory in c?
show how link list can be used to repersent the following polynomial i) 5x+2
How do you search data in a data file using random access method?
What is stack in c?