学海无涯

记录我的程序人生...

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
  72 随笔 :: 2 文章 :: 69 评论 :: 11 引用

08 2006 档案

摘要: 字母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 阅读(873) | 评论 (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 阅读(453) | 评论 (0) 编辑