C Tutorial/Pointer/Pointer Introduction — различия между версиями
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
|
(нет различий)
|
Версия 14:21, 25 мая 2010
Pointers
- Pointers are used manipulate the computer"s memory.
- Pointers are declared by using the asterisk(*).
The following line declares an integer pointer, s:
int *s;
The ampersand & is used to get the address.