C語言入門語法

一、數據類型 常量 1、通過預處理聲明常量 #include <stdio.h> #define PRICE 100 int main() { printf("價格:%d\n",PRICE); return 0; } 2、通過 const 關鍵字聲明常量 #include <stdio.h> const int NUM=10; int main() { printf("
相關文章
相關標籤/搜索