English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

while programing C ..how that can be known??
i am working in C -wiht gcc compiler.

2007-02-07 16:34:29 · 2 answers · asked by saritha v 1 in Computers & Internet Programming & Design

2 answers

.

Its simple

The address of operator should have a single variable name on its right side.

The bit wise AND operator should have two operands on its both sides.

**********
Vasu M
**********

2007-02-07 17:07:34 · answer #1 · answered by V@su Maniram 3 · 1 0

&(address of operator) is an unary operator, so it can be used only on one operand
e.g. a=&b;

while
&(bitwise operator) is a binary operator, so it can be used only on two operands.
e.g. a=b&c;

2007-02-08 01:29:41 · answer #2 · answered by Vaibhav 4 · 1 0

fedest.com, questions and answers