D18. 函式庫
#include<stdio.h>
main(){
printf("Hello world.");
}
開頭的這個就是C標準函式庫裡的其中一個,如果沒有在開頭打上#include<stdio.h> ,就會出現錯誤訊息
包含在C標準函式庫裡面的函示:
<assert.h>
<ctype.h>
<errno.h>
<float.h>
<limits.h>
<locale.h>
<math.h>
<setjmp.h>
<signal.h>
<stdarg.h>
<stddef.h>
<stdio.h>
<stdlib.h>
<string.h>
<time.h>
而最常用的是<stdio.h>,stdio 就是指standard input & output(標準輸入輸出),原始碼中如用到標準輸入輸出函式時,就要包含這個頭檔案,例如c語言中的 printf("%d",i); scanf("%d",&i);等函式。