stdio.h:就是指“standardinput&output"。意思就是說標準輸入輸出標頭檔案!所以了,用到標準輸入輸出函式時,就要呼叫這個標頭檔案!
呼叫:#include<stdio.h>或#include"stdio.h"
需要預處理的語句:
intgetchar()//從標準輸入裝置讀入一個字元,顯示
intputchar()//向標準輸出裝置寫一個字元
intscanf(char*format[,argument…])//從標準輸入裝置讀入資料
intprintf(char*format[,argument…])//格式化字串輸入到標準輸出裝置
intputs(char*string)//輸出一個字串到標準輸出裝置
char*gets(char*string)//從標準輸入裝置讀入一個字元
intsprintf(char*string,char*format[,…])//格式化一個字串輸出到字元陣列中,不顯示
至於#include<math.h>)是數學函式庫,你要呼叫各種數學函式有這個檔案就能直接呼叫,否則要自己在編寫。
stdio.h:就是指“standardinput&output"。意思就是說標準輸入輸出標頭檔案!所以了,用到標準輸入輸出函式時,就要呼叫這個標頭檔案!
呼叫:#include<stdio.h>或#include"stdio.h"
需要預處理的語句:
intgetchar()//從標準輸入裝置讀入一個字元,顯示
intputchar()//向標準輸出裝置寫一個字元
intscanf(char*format[,argument…])//從標準輸入裝置讀入資料
intprintf(char*format[,argument…])//格式化字串輸入到標準輸出裝置
intputs(char*string)//輸出一個字串到標準輸出裝置
char*gets(char*string)//從標準輸入裝置讀入一個字元
intsprintf(char*string,char*format[,…])//格式化一個字串輸出到字元陣列中,不顯示
至於#include<math.h>)是數學函式庫,你要呼叫各種數學函式有這個檔案就能直接呼叫,否則要自己在編寫。