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


Please Help Members By Posting Answers For Below Questions

how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....

1364


Write a program to swap two numbers without using third variable in c?

607


What language is c written?

569


An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above

642


Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?

659






What will be the outcome of the following conditional statement if the value of variable s is 10?

754


What are c header files?

572


What does void main return?

597


Explain how can you tell whether a program was compiled using c versus c++?

569


What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25

1485


Explain enumerated types in c language?

598


What is calloc in c?

652


Find MAXIMUM of three distinct integers using a single C statement

617


How do we make a global variable accessible across files? Explain the extern keyword?

1413


How can you check to see whether a symbol is defined?

583