Please list all the unary and binary operators in C.
Answer Posted / shiva shankar shukla
> AND OR XOR NOT
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
What is the difference between arrays and pointers?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What is structure in c definition?
Describe static function with its usage?
What are pointers? What are stacks and queues?
What is difference between far and near pointers?
Why is it that not all header files are declared in every C program?
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
What is a program?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
#include
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What is the difference between scanf and fscanf?