C Tutorial/Pointer/Pointer Introduction

Материал из C\C++ эксперт
Версия от 10:32, 25 мая 2010; Admin (обсуждение | вклад) (1 версия: Импорт контента...)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Pointers

  1. Pointers are used manipulate the computer"s memory.
  2. 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.