Examveda

What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int main ()
{
    int numbers[5];
    int * p;
    p = numbers;  *p = 10;
    p++;  *p = 20;
    p = &numbers[2];  *p = 30;
    p = numbers + 3;  *p = 40;
    p = numbers;  *(p + 4) = 50;
    for (int n = 0; n < 5; n++)
       cout << numbers[n] << ",";
    return 0;
}

A. 10,20,30,40,50,

B. 1020304050

C. compile error

D. runtime error

Answer: Option A


Join The Discussion

Related Questions on Pointers and References in C plus plus

What is a pointer in C++?

A. A variable that stores the size of another variable

B. A variable that stores the address of another variable

C. A variable that stores a reference to another variable

D. None of the above