摘要:
http://msdn.microsoft.com/en-us/library/cc262957%28v=office.12%29.aspx指针:#pragma once#include <stdio.h>int main(void){ int stopFlag = 0; int a; int *aPtr; a = 7; aPtr = &a; printf("The address of a is %p\nThe value of aPtr is %p", &a, aPtr); printf("\nThe value of a is % 阅读全文