What would be the output of the following program void main ( ) { int a=1,b=2,c=4; a=c+ ++b/c; cout <<"a="<<a; }
a=3
a=0.7
a=4
a=0
6>4?9:7 evaluate to
6
9
7
4
Universal int ul=0;What is the result of the expression.!!ul
0
1
2
3
What is the result of the expression : a>=b&&(a+b)>a when a=3,b=0
int a=25;what is sizeof (a);
25
a=25
a=1
Predict the output: (6==3)&&(4==4)
error
none of these
int a=20;evaluate the following expression. a+=a+ ++a;
63
64
65
66
Equality operator is
=
= =
< =
< >
The logical _________ operator evaluates to true,ie 1 if either of its operands evaluate to true
AND
NOT
OR
!