摘要: 函数名: movetext 功 能: 将屏幕文本从一个矩形区域拷贝到另一个矩形区域 用 法: int movetext(int left, int top, int right, int bottom, intnewleft, int newtop);程序例: #inclu... 阅读全文
posted @ 2010-12-28 12:58 潜龙9527 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 函数名: modf 功 能: 把数分为整数和小数 (The modf function breaks down the floating-pointvalue x into fractional and integer parts, each of which has thesame si... 阅读全文
posted @ 2010-12-28 12:57 潜龙9527 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 原型:extern void *memccpy(void *dest, void *src, unsigned charc, unsigned int count); 参数: dest Pointer to the destination. src Pointer to the so... 阅读全文
posted @ 2010-12-28 12:56 潜龙9527 阅读(450) 评论(0) 推荐(0) 编辑
摘要: 函数名: highvideo 功 能: 选择高亮度文本字符 用 法: void highvideo(void); 头文件: conio.h 程序例: #include #include int main(void) { clrscr(); low... 阅读全文
posted @ 2010-12-28 12:53 潜龙9527 阅读(251) 评论(0) 推荐(0) 编辑
摘要: C函数名:fmod 功 能: 计算x对y的模, 即x/y的余数,若y是0,则返回NaN。 用 法: doublefmod(double x, double y); 需要头文件:math.h 程序例: #include #includ... 阅读全文
posted @ 2010-12-28 12:52 潜龙9527 阅读(847) 评论(0) 推荐(0) 编辑
摘要: 函数名: delline 功 能: 在文本窗口中删去一行 用 法: void delline(void); 程序例: #include int main(void) { clrscr(); cprintf("The function DELLINE delet... 阅读全文
posted @ 2010-12-28 12:51 潜龙9527 阅读(300) 评论(0) 推荐(0) 编辑