学海无涯

记录我的程序人生...

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2006年8月3日

摘要: 字母A开头函数函数名: abort功 能: 异常终止一个进程用 法: void abort(void);程序例:#include <stdio.h>#include <stdlib.h>int main(void){printf("Calling abort()\n");abort();return 0; /* This is never reached */}函数名: a... 阅读全文
posted @ 2006-08-03 13:18 josson 阅读(1634) 评论(0) 推荐(0) 编辑

摘要: 原文: http://blog.csdn.net/shaohui/archive/2004/11/05/167969.aspx分类函数,所在函数库为ctype.hint isalpha(int ch) 若ch是字母('A'-'Z','a'-'z')返回非0值,否则返回0int isalnum(int ch) 若ch是字母('A'-'Z','a'-'z')或数字('0'-'9') 返回非0值,否则返... 阅读全文
posted @ 2006-08-03 13:16 josson 阅读(653) 评论(0) 推荐(0) 编辑