Pages

Saturday, April 5, 2025

What are pointers? in C++

 Pointers are special variable that stores address of another variable.


#include<iostream>

using namespace std;

int main(){
    int a = 10;
    int *ptr = &a;

    int **pptr = &ptr;

    cout << &ptr << " = " << pptr << "\n";

    return 0;
}

OUTPUT-
0x61ff04 = 0x61ff04

No comments:

Post a Comment

how to become red on codeforces by Errichto Algorithms | explained simply in a blog

 Yes. I found an available transcript of the video and summarized it simply. The video is “How To Become Red Coder? (codeforces.com)” by Err...