Which of the following is the correct option?

140. Which of the following is the correct option?
int* a, b;

  1. a is a pointer to an integer and b is an integer variable
  2. b is a pointer to an integer and a is an integer variable
  3. both a and b are pointers.

Answer: A) a is a pointer to an integer and b is an integer variable

Explanation:

In the above-given statement, a is a pointer to an integer and b is an integer variable.

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.