摘要: 解放文字显示 几分钟使你的对话框OR视图文字呈现多彩效果解放文字显示处理不要再将宝贵时间浪费在文字显示处理上,文字读取后,直接呈现多彩效果示例 :在对话框CStatic控件上,显示一段文字信息:代码:shuhuaDLL使用说明:对话框程序中添加VIEW视图:对话框上放一个文本控件CStatic I... 阅读全文
posted @ 2014-12-01 07:10 shuilan 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 本文由书画小说软件整理发布内容与本软件无关更惬意的读、更舒心的写、更轻松的发布最全古典小说网由本软件发布所得折腾了几天,终于找到很节省资源的安装wordpress方案。成功搭建网站http://www.gudianxiaoshuo.comandhttp://www.gudianbook.com同时向大家推荐下wordpress建站利器... 阅读全文
posted @ 2014-10-20 13:26 shuilan 阅读(479) 评论(0) 推荐(0) 编辑
摘要: 函数名:abort功能:异常终止一个进程用法:voidabort(void);程序例:#include#includeintmain(void){printf("Callingabort()\n");abort();return0;/*Thisisneverreached*/}函数名:abs功能:求整数的绝... 阅读全文
posted @ 2014-10-18 20:41 shuilan 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 函数名:wherex功能:返回窗口内水平光标位置用法:intwherex(void);程序例:#includeintmain(void){clrscr();gotoxy(10,10);cprintf("CurrentlocationisX:%dY:%d\r\n",wherex(),wherey());getch();... 阅读全文
posted @ 2014-10-18 15:34 shuilan 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 函数名:vfprintf功能:送格式化输出到一流中用法:intvfprintf(FILE*stream,char*format,va_listparam);程序例:#include#include#includeFILE*fp;intvfpf(char*fmt,...){va_listargptr;intcnt;... 阅读全文
posted @ 2014-10-18 15:32 shuilan 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 函数名:ultoa功能:转换一个无符号长整型数为字符串用法:char*ultoa(unsignedlongvalue,char*string,intradix);程序例:#include#includeintmain(void){unsignedlonglnumber=3123456789L;charstring[25]... 阅读全文
posted @ 2014-10-18 15:30 shuilan 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 函数名:tan功能:正切函数用法:doubletan(doublex);程序例:#include#includeintmain(void){doubleresult,x;x=0.5;result=tan(x);printf("Thetanof%lfis%lf\n",x,result);retur... 阅读全文
posted @ 2014-10-18 15:26 shuilan 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 函数名:sbrk功能:改变数据段空间位置用法:char*sbrk(intincr);程序例:#include#includeintmain(void){printf("Changingallocationwithsbrk()\n");printf("Beforesbrk()call:%lubytesfree\n",(un... 阅读全文
posted @ 2014-10-18 15:23 shuilan 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 函数名:raise功能:向正在执行的程序发送一个信号用法:intraise(intsig);程序例:#includeintmain(void){inta,b;a=10;b=0;if(b==0)/*preemptdividebyzeroerror*/raise(SIGFPE);... 阅读全文
posted @ 2014-10-18 14:11 shuilan 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 函数名:parsfnm功能:分析文件名用法:char*parsfnm(char*cmdline,structfcb*fcbptr,intoption);程序例:#include#include#include#includeintmain(void){charline[80];structfcbblk;/*g... 阅读全文
posted @ 2014-10-18 14:08 shuilan 阅读(156) 评论(0) 推荐(0) 编辑