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

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

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

Output the size of a pointer

#include <stdio.h>
int main(void)
{
  int number = 0;                 
  int *pointer = NULL;            
  number = 10;
  pointer = &number;            
  printf("\npointer"s size: %d bytes", sizeof(pointer)); /* Output the size   */
  return 0;
}
pointer"s size: 4 bytes