int a=25;what is sizeof (a);
25
2
a=25
a=1
a+=10 is equivalent to
a++
++a
a=a+10
none
What is the result of (! check) if check= -3
3
1
0
-3
Which is not unary from the following :
/ =
+ +
- -
size of
int a=20;evaluate the following expression. a+=a+ ++a;
63
64
65
66
Find the odd one out :
a=a+1;
a+=1;
a++;
a=+1;
Evaluate the c++ expression: int a,mb=2,k=4; a=mb*3/4+8-mb+5/8;
10
8
4
6
Universal int ul=0;What is the result of the expression.!!ul
The arithmetic operator '%'is called:
percent
mode
modules
division