#include <stdio.h>
#include <stdlib.h>
int main()
{
// 指针初始化时,“=”的右操作数必须为内存中数据的地址,不能够是变量,也不能够直接用整型地址值
// *p仅仅是表示定义的是个指针变量,并没有间接取值的意思。
int count = 9;
int *order_count;
// 在指针变量中存储 count 的地址
order_count = &count;
// 在指针变量中存储的地址
printf("%p\n", order_count);
// 使用指针访问值
printf("%d\n", *order_count);
//printf("Hello world!\n");
return 0;
}