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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
|
{
"metadata": {
"name": "",
"signature": "sha256:44f5daf77255992c95710d94f062b0f1f1e981b9e6cce07f23ed45a322c4b130"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter 14 : Accessing Variable through Pointers"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example: 1, Page Number: 5.107 "
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Program to accessing through variable pointer\n",
"\n",
"from ctypes import c_int\n",
"\n",
"#Local definition\n",
"a = 22\n",
"a = c_int(a) # ctype datatype declaration\n",
"\n",
"b = 2.25\n",
"b = c_float(b) # ctype datatype declaration\n",
"\n",
"#Pointer variables\n",
"a_po=pointer(a)\n",
"b_po=pointer(b)\n",
"\n",
"# 'id' is a address of letter and it represents the address of the variable\n",
"a = id(a)\n",
"b = id(b)\n",
"\n",
"\n",
"#Result\n",
"print \"\\nValue of a = %d\" %a_po[0]\n",
"print \"\\nValue of b = %.2f\" %b_po[0]\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Value of a = 22\n",
"\n",
"Value of b = 2.25\n"
]
}
],
"prompt_number": 9
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example: 2, Page Number: 5.108"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Program to print address and value of variable\n",
"\n",
"from ctypes import c_int\n",
"\n",
"#Local definition\n",
"a = 22\n",
"a = c_int(a) # ctype datatype declaration\n",
"\n",
"#Pointer variables\n",
"a_po=pointer(a)\n",
"\n",
"# 'id' is a address of letter and it represents the address of the variable\n",
"a = id(a)\n",
"\n",
"#Result\n",
"print \"\\n Value of a = %d\" %a_po[0]\n",
"print \"\\n Address of a = %u\" %id(a)\n",
"print \"\\n Value at address %u = %d\" %(id(a),a_po[0])\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
" Value of a = 22\n",
"\n",
" Address of a = 4344066728\n",
"\n",
" Value at address 4344066728 = 22\n"
]
}
],
"prompt_number": 8
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example: 3, Page Number: 5.108"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# Program to print value and address of variable\n",
"\n",
"from ctypes import c_int\n",
"\n",
"#Local definition\n",
"a = 22\n",
"b = c_int(a) # ctype datatype declaration\n",
"\n",
"#Pointer variable\n",
"b_po=pointer(b)\n",
"\n",
"# 'id' is a address of letter and it represents the address of the variable\n",
"b = id(a)\n",
"\n",
"#Result\n",
"print \"\\n Value of a = %d\" %a\n",
"print \"\\n Value of a = %d\" %(c_int(a).value)\n",
"print \"\\n Value of a = %d\" %b_po[0]\n",
"print \"\\n Address of a = %u\" %id(a)\n",
"print \"\\n Address of a = %u\" %b\n",
"print \"\\n Address of a = %u\" %id(b)\n",
"print \"\\n Value of b = address of a = %u\" %b"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
" Value of a = 22\n",
"\n",
" Value of a = 22\n",
"\n",
" Value of a = 22\n",
"\n",
" Address of a = 4298180848\n",
"\n",
" Address of a = 4298180848\n",
"\n",
" Address of a = 4344066728\n",
"\n",
" Value of b = address of a = 4298180848\n"
]
}
],
"prompt_number": 10
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example: 4, Page Number: 5.109"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Program to illustrate pointer to pointer\n",
"\n",
"from ctypes import c_int\n",
"\n",
"#Local definition\n",
"a = 22\n",
"b = c_int(a) # ctype datatype declaration\n",
"c = c_int(a) # ctype datatype declaration\n",
"\n",
"#Pointer variable\n",
"b_po = pointer(b)\n",
"c_po = pointer(b_po) # c_po is a pointer to another pointer\n",
"\n",
"# 'id' is a address of letter and it represents the address of the variable\n",
"b = id(a)\n",
"c = id(b)\n",
"\n",
"#Result\n",
"print \"\\n Value of a is %d\" %a\n",
"print \"\\n Value of a is %d\" %(c_int(a).value)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
" Value of a is 22\n",
"\n",
" Value of a is 22\n"
]
}
],
"prompt_number": 14
}
],
"metadata": {}
}
]
}
|