程式的第一行#include <stdio.h>是預處理器指令,告訴 C 編譯器在實際編譯之前要包含 stdio.h 檔案。 下一行int main()是主函式,程式從這裡開始執行。 下一行printf(...)是 C 中另一個可用的函式,會在螢幕上顯示訊息 "Hello, World!"。 下一行return 0;終止 main() 函式,並返回值 0。
Copyright © All rights reserved | This template is made with by Colorlib