[A].
[B].
[C].
[D].
Answer: Option A
Explanation:
No answer description available for this question.
[B].
[C].
[D].
Answer: Option A
Explanation:
No answer description available for this question.
[B].
[C].
[D].
Answer: Option B
Explanation:
No answer description available for this question.
[B].
[C].
[D].
Answer: Option D
Explanation:
No answer description available for this question.
[B].
[C].
[D].
Answer: Option D
Explanation:
No answer description available for this question.
[B].
[C].
[D].
Answer: Option D
Explanation:
No answer description available for this question.
[B].
[C].
[D].
Answer: Option B
Explanation:
No answer description available for this question.
[B].
[C].
[D].
Answer: Option D
Explanation:
No answer description available for this question.
[B].
[C].
[D].
Answer: Option D
Explanation:
No answer description available for this question.
#include
int BixFunction(int m)
{
m *= m;
return((10)*(m /= m));
}
int main()
{
int c = 9, *d = &c, e;
int &z = e;
e = BixFunction(c-- % 3 ? ++*d :(*d *= *d));
z = z + e / 10;
cout<< c << " " << e;
return 0;
}
Answer: Option D
#include
int main()
{
int x = 10, y = 20;
int *ptr = &x;
int &ref = y;
*ptr++;
ref++;
cout<< x << " " << y;
return 0;
}
[A]. The program will print the output 10 20.
[B]. The program will print the output 10 21.
[C]. The program will print the output 11 20.
[D]. The program will print the output 11 21.
Answer: Option B