Which is not unary from the following :
/ =
+ +
- -
size of
Find the odd one out :
a=a+1;
a+=1;
a++;
a=+1;
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
What is the result of (! check) if check= -3
3
1
0
-3
Equality operator is
=
= =
< =
< >
The logical _________ operator evaluates to true,ie 1 if either of its operands evaluate to true
AND
NOT
OR
!
If a= -4,then the value of -a is :
4
-4
16
A variable can be declared static using the keyword
extern
static
register
auto
Evaluate x=++y+2y, given if y=6
19
20
21
22
int a=25;what is sizeof (a);
25
2
a=25
a=1