One Note with Two Memories
一個人的筆記,兩個人的回憶。 Without catching, the dream only is the dream
....
2014年5月13日 星期二
[長知識] C語言 - 新手篇章 - &怎麼用
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
int enter;
//請求輸入-->轉譯 -->放入記憶體位置
printf("input:\n");
//記憶體取 &enter值,丟到 %i
//
&
是取得記憶體空間的意思
scanf("%i",
&
enter);
//印出輸入的值
printf("your input is :%i\n",enter);
//0表示關閉程式
return 0;
}
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言