指標就在前方不遠處...
今日主題:scanf
當我們在鍵盤上輸入資料時,參數要用位址,就像是郵差根據收件人的位址將變數傳進來。
請看程式碼:
#include <stdio.h>
#include <string.h>
main()
{
double x, y;
printf("Please input x and y");
scanf("%f %f", &x, &y); //4 5
printf("%f", (x+y)/2); //4.500000
}