Answers

Question and Answer:

  Home  C++ Pointers and Functions

⟩ The output of this program? #include <iostream> using namespace std; int main() { int arr[] = {4, 5, 6, 7}; int *p = (arr + 1); cout << *p; return 0; } a) 4 b) 5 c) 6 d) 7

b) 5

 182 views

More Questions for you: