在Visual Studio 2019中寫C程序ide
#include<stdio.h> //包含一個叫stdio.h的文件 //std-標準standard //i-input //o-output //輸入輸出時的庫函數的時候要使用這個頭文件 //int整型的意思 //main前面的int表示main函數調用後返回一個整型值 //void main已通過時了 int main() //主函數-程序的入口 main函數有且僅有一個 fn+F10 { //這裏完成任務 //在屏幕上輸出hello word //函數-printf function-printf-打印函數 //庫函數-C語言自己提供給咱們使用的函數 //#include<stdio.h> printf("hello word!\n"); //char - 字符類型 char ch = 'A'; int age = 20; //short int - 短整型 //int - 整型 //long - 長整型 //%d - 打印整型 //%c - 打印字符 //%f - 打印浮點型,打印小數 //%p - 以地址的形式打印 long num = 100; float f = 5.0; double d = 3.14; printf("%lf\n", d);//%lf打印雙精度小數 printf("%f\n", f); printf("%c\n",ch);//%c打印字符格式的數據 printf("%d\n",age);//%d打印整型十進制數據 printf("%d\n",num); return 0; }