LearnCPP
LearnCPP copied to clipboard
Illustrating the Relationship between Array and Pointers
#include < iostream >
using namespace std;
int main() { // Defining an array int arr[ ] = { 1, 2, 3, 4 };
// Define a pointer
int* ptr = arr;
// Printing address of the arrary using array name
cout << "Memory address of arr: " << &arr << endl;
// Printing address of the array using ptr
cout << "Memory address of arr: " << ptr << endl;
return 0;
}
Hello @11gurmeet11, thanks for creating your first issue at LearnCPP, hope you followed the guidelines.
Hi @11gurmeet11 , please go ahead and raise the PR, will talk there.