C++ Tutorial/Pointer/pointer to pointer — различия между версиями

Материал из C\C++ эксперт
Перейти к: навигация, поиск
м (1 версия: Импорт контента...)
 
(нет различий)

Версия 14:21, 25 мая 2010

Pointer to a pointer

#include <iostream> 
using namespace std; 
 
int main() 
{ 
  int x, *p, **q; 
 
  x = 10; 
 
  p = &x; 
 
  q = &p; 
 
  cout << **q; // prints the value of x 
 
  return 0; 
}
10