-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdouble_pointers.cpp
56 lines (46 loc) · 1.04 KB
/
double_pointers.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include<iostream>
using namespace std;
void update(int **p2) {
//p2 = p2 + 1;
//kuch change hoga - NO
//*p2 = *p2 + 1;
//kuch change hoga - YES
**p2 = **p2 + 1;
//kuch change hoga - YES
}
void update(int *p){
*p = (*p) * 2;
}
void increment(int **p){
++(**p);
}
int main() {
/*
int i = 5;
int* p = &i;
int** p2 = &p;
cout<< endl << endl <<" Sab sahi chal rha h " << endl << endl ;
cout << i << endl;
cout << *p << endl;
cout << **p2 << endl;
cout << &i << endl;
cout << p << endl;
cout << *p2 << endl;
cout << &p << endl;
cout << p2 << endl;
cout << endl << endl;
cout<< "before " << i << endl;
cout<< "before " << p << endl;
cout<< "before " << p2 << endl;
update(p2);
cout<< "after " << i << endl;
cout<< "after " << p << endl;
cout<< "after " << p2 << endl;
cout << endl << endl;
*/
int num = 110;
int *ptr = #
increment(&ptr);
cout << num << endl;
return 0;
}