Skip to content

Instantly share code, notes, and snippets.

@JIElite
Created November 8, 2014 12:12
Show Gist options
  • Save JIElite/aed0b701a00a0c7c430d to your computer and use it in GitHub Desktop.
Save JIElite/aed0b701a00a0c7c430d to your computer and use it in GitHub Desktop.
{
int *num; //指向int的pointer , 它的內容就是 就是int的address
// 0x12345678之類的
num = &number;
// 以下是 function body
*num = XXXX ; 直接改到外部變數值
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment