- 1、本文档共9页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
函数doc说明文件.doc
stdio.h: I/O functions:
getchar() returns the next character typed on the keyboard.
putchar() outputs a single character to the screen.
printf() as previously described
scanf() as previously described
string.h: String functions
strcat() concatenates a copy of str2 to str1
strcmp() compares two strings
strcpy() copys contents of str2 to str1
ctype.h: Character functions
isdigit() returns non-0 if arg is digit 0 to 9
isalpha() returns non-0 if arg is a letter of the alphabet
isalnum() returns non-0 if arg is a letter or digit
islower() returns non-0 if arg is lowercase letter
isupper() returns non-0 if arg is uppercase letter
time.h: Time and Date functions
time() returns current calender time of system
difftime() returns difference in secs between two times
clock() returns number of system clock cycles since program execution
stdlib.h:Miscellaneous functions
malloc() provides dynamic memory allocation, covered in future sections
rand() as already described previously
srand() used to set the starting point for rand()
輸出入函數
輸出/入設備
輸出/入指令設備
緩衝區
緩衝區滿
或EOF
填入緩衝區
暫未輸出入
直接輸出入至設備
緩衝區輸出入, 只有緩衝區滿或EOF符號(如鍵盤需要輸入enter鍵)才可正常輸出入
stdio.h: I/O functions:
緩衝區輸入
scanf() 由輸入緩衝區輸入格式化資料
語法:
scanf( “格式字串 %d, ...%c ...等等”, 變數位址, .... )
範例
Int i ;
Int * ip;
Ip=(int*) malloc(sizeof(int));
scanf( “%d %d”, i, ip);
printf(“%d %d\n”, i,*ip );
getchar()由輸入設備之緩衝區讀得一字元, 若輸入設備為鍵盤, 需要輸入enter鍵才能將鍵盤輸入至緩衝區
語法:
字元變數=getchar();
範例
char ch;
ch=getchar();
char *chp;
chp=(int*) malloc(sizeof(int));
*chp =getchar();
printf(“%c %c\n”, ch,*chp );
非緩衝區輸入
getch(): 由鍵盤取得一字元, 該字元不顯示於營幕
語法:
字元變數=getch();
範例
char ch;
ch =getch();
char *chp;
chp=(int*) malloc(sizeof(int));
*chp =getch();
printf(“%d %d\n”, ch,*chp );
getche():由鍵盤取得一字元, 該字元顯示於營幕
語法:
字元變數=getche();
範例
char
文档评论(0)