标签:style class blog code color cti
For example,the following statements an integer variable ‘a‘ and a pointer to an integer variable ‘p‘ are declared.Then the address of the variable a is determined with the & operator and is assigned to the pointer variable.
1 int a, *p; 2 p = &a;
标签:style class blog code color cti
原文地址:http://www.cnblogs.com/listened/p/3785638.html