pointer
š§© 1ļøā£ Basic Pointer
š A pointer stores the address of another variable.
#include <iostream>
using namespace std;
int main() {
int a = 10;
int *p = &a;
cout << "Value of a: " << a << endl;
cout << "Address of a: " << &a << endl;
...
yesamitsingh.hashnode.dev3 min read