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 |
Why can't we initialise member variable of a strucutre
Why calloc is better than malloc?
What language is c written?
What is the value of h?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What is the difference between array_name and &array_name?
How can you increase the size of a dynamically allocated array?
wt is diference between int and int pointer as same as float and float pointer and char and char pointer
main is a predefined or user define function if user defined why? if predefined whay?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
how to find greatet of 10 numbers without using array?
where do we use volatile keyword?