iT邦幫忙

0

D18. 學習基礎C、C++語言

c
  • 分享至 

  • xImage
  •  

D18. 函式庫

#include<stdio.h> 

main(){
	
   printf("Hello world.");
}

開頭的這個就是C標準函式庫裡的其中一個,如果沒有在開頭打上#include<stdio.h> ,就會出現錯誤訊息
https://ithelp.ithome.com.tw/upload/images/20211230/20143627N43Y55j304.jpg

包含在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);等函式。


圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言