int a=20;evaluate the following expression. a+=a+ ++a;
63
64
65
66
Enumeration is
a set of numbers
a list of strings
a set of legal values possible for a variable
a list of operators
A variable can be declared static using the keyword
extern
static
register
auto
a+=10 is equivalent to
a++
++a
a=a+10
none
If a= -4,then the value of -a is :
4
-4
0
16
The logical _________ operator evaluates to true,ie 1 if either of its operands evaluate to true
AND
NOT
OR
!
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
-3
int a=25;what is sizeof (a);
25
2
a=25
a=1