巧巧读书首页 > c语言

您可以点击右边查看标题索引页

[上一页] [33] [32] [31] [30] [29] [28] [27] [26] [25] [下一页]

c语言库函数(g类字母) - 3
函数名: getgraphmode 功 能: 返回当前图形模式 用 法: int far getgraphmode(void); 程序例: #include <graphics.h> #include <stdlib.h> #include <stdio.h> #include <conio.h> int main(void) { /...
http://www.qqread.com/cpp/book/tu610128.html 2006-10-12
[C/C++]内的更多内容

c语言库函数(g类字母) - 1
函数名: gcvt 功 能: 把浮点数转换成字符串 用 法: char *gcvt(double value, int ndigit, char *buf); 程序例: #include <stdlib.h> #include <stdio.h> int main(void) { char str[25]; double num; int sig = 5...
http://www.qqread.com/cpp/book/tu610127.html 2006-10-12
[C/C++]内的更多内容

c语言库函数 (e类字母)
[ 发表日期:2002-1-4 9:28:46 ] 函数名: ecvt 功 能: 把一个浮点数转换为字符串 用 法: char ecvt(double value, int ndigit, int *decpt, int *sign); 程序例: #include <stdlib.h> #include <stdio.h> #include...
http://www.qqread.com/cpp/book/tu610126.html 2006-10-12
[C/C++]内的更多内容

c语言库函数 (d类字母)
[ 发表日期:2002-1-4 9:28:46 ] 函数名: delay 功 能: 将程序的执行暂停一段时间(毫秒) 用 法: void delay(unsigned milliseconds); 程序例: /* emits a 440-hz tone for 500 milliseconds */ #include <dos.h> int mai...
http://www.qqread.com/cpp/book/tu610125.html 2006-10-12
[C/C++]内的更多内容

c语言库函数 (c类字母)
[ 发表日期:2002-1-4 9:28:46 ] 函数名: cabs 功 能: 计算复数的绝对值 用 法: double cabs(struct complex z); 程序例: #include <stdio.h> #include <math.h> int main(void) { struct complex z; double val; ...
http://www.qqread.com/cpp/book/tu610124.html 2006-10-12
[C/C++]内的更多内容

1998年4月全国计算机等级考试二级试卷c语言(带答案)
(21)在c语言提供的合法的着急字是 a)swicth b)cher c)case d)default (22)在c语言中,合法的字符常量是 a)'\084' b)'\x43' c)'ab' d)"\0" (23)若已定义x和y为double类型,则表达式:x=1,y=x+3/2的值是 a)1 b)2 c)2.0 d)2.5 (24)合...
http://www.qqread.com/cpp/x221783.html 2006-10-17
[C/C++]内的更多内容

1996年9月全国计算机等级考试二级试卷c语言(带答案)
下列语句中符合c语言语法的赋值语句是 a) a=7+b+c=a+7; b) a=7+b++=a+7; c) a=7+b,b++,a+7 d) a=7+b,c=a+7; (22) 在c语言中,要求运算数必须是整型的运算符是 a) % b) / c) < d) ! (23) 已知字母a的ascⅱ码为十进制的65,下面...
http://www.qqread.com/cpp/x221782.html 2006-10-17
[C/C++]内的更多内容

c语言库函数(s类字母)-2
函数名: setjmp 功能: 非局部转移 用法: int setjmp(jmp_buf env); 程序例: #include <stdio.h> #include <process.h> #include <setjmp.h> void subroutine(void); jmp_buf jumper; int main(void) {int va...
http://www.qqread.com/cpp/book/tu6101225.html 2006-10-12
[C/C++]内的更多内容

c语言库函数(s类字母) - 1
函数名: sbrk 功能: 改变数据段空间位置 用法: char *sbrk(int incr); 程序例: #include <stdio.h> #include <alloc.h> int main(void) {printf("changing allocation with sbrk()\n");printf("before sbrk() call...
http://www.qqread.com/cpp/book/tu6101224.html 2006-10-12
[C/C++]内的更多内容

c语言库函数(w类字母)
函数名: wherex功能: 返回窗口内水平光标位置用法: int wherex(void);程序例: #include <conio.h> int main(void){ clrscr(); gotoxy(10,10); cprintf("current location is x: %dy: %d\r\n", wherex(), wherey()); getc...
http://www.qqread.com/cpp/book/tu6101223.html 2006-10-12
[C/C++]内的更多内容

c语言库函数(v类字母)
函数名: vfprintf 功能: 送格式化输出到一流中 用法: int vfprintf(file *stream, char *format, va_list param); 程序例: #include <stdio.h> #include <stdlib.h> #include <stdarg.h> file *fp; int vfpf...
http://www.qqread.com/cpp/book/tu6101222.html 2006-10-12
[C/C++]内的更多内容

c语言库函数(u类字母)
函数名: ultoa 功能: 转换一个无符号长整型数为字符串 用法: char *ultoa(unsigned long value, char *string, int radix); 程序例: #include <stdlib.h> #include <stdio.h> int main( void ) {unsigned long lnu...
http://www.qqread.com/cpp/book/tu6101221.html 2006-10-12
[C/C++]内的更多内容

c语言库函数(t类字母)
函数名: tan 功能: 正切函数 用法: double tan(double x); 程序例: #include <stdio.h> #include <math.h> int main(void) {double result, x;x = 0.5;result = tan(x);printf("the tan of %lf is %lf\n", x, resu...
http://www.qqread.com/cpp/book/tu6101220.html 2006-10-12
[C/C++]内的更多内容

2000年4月基础知识知识和c语言程序设计答案及评分标准
一、选择题((1)--(40)每小题1分, (41)--(50)每小题2分, 共60分) (1)a (2)c (3)c (4)d (5)d (6)a (7)c (8)c (9)d (10)b (11)c (12)d (13)d (14)b (15)d (16)a (17)c (18)a (19)a (20)b (21)a (22)c (23)d (24)a (25)a (26)d (...
http://www.qqread.com/cpp/y221793.html 2006-10-17
[C/C++]内的更多内容

1999年9月基础知识知识和c语言程序设计答案及评分标准
一、选择题((1)--(40)题每题1分,(41)--(50)题每题2分,共60分。 (1)b (2)d (3)d (4)d (5)a (6)b (7)d (8)c (9)a (10)a (11)c (12)b (13)c (14)d (15)b (16)c (17)a (18)d (19)c (20)b (21)c (22)d (23)c (24)b (25)a (26)d (2...
http://www.qqread.com/cpp/x221786.html 2006-10-17
[C/C++]内的更多内容

1999年4月全国计算机等级考试二级笔试试卷基础部分和c语言程序设计
则以下符合c语言语法的表达式是 a) a+=a-=(b=4)*(a=3) b) x%(-3); c) a=a*3=2 d) y=float(i) (18) 假定有以下变...量定义: int k=7,x=12; 则能使值为3的表达式是 a) x%=(k%=5) b) x%=(k-k%5) c) x%=k-k%5 d) (x%=k)-(k%=5) (19) ...
http://www.qqread.com/cpp/x221785.html 2006-10-17
[C/C++]内的更多内容

1999年4月基础知识知识和c语言程序设计答案及评分标准
一.选择((1)~(40)题每题1分,(41)~(50)题 每题 2分,共60分) (1)b (2)b (3)d (4)d (5)a (6)a (7)b (8)b (9)d (10)c (11)b (12)a (13)a (14)d (15)c (16)c (17)a (18)d (19)d (20)d (21)d (22)c (23)b (24)b (25)b (26)c (27)a (2...
http://www.qqread.com/cpp/x221784.html 2006-10-17
[C/C++]内的更多内容

2001年4月全国计算机等级考试二级试卷c语言程序设计
c语言编译时不检查语法 b) c语言的子程序有过程和函数两种 c) c语言的函数可以嵌套定义 d) c语言所有函数都是外部函数 (17) 以下所列的c语言常量中,错误的是 a) 0xff b) 1.2e0.5 c) 2l d) '\72' (18) 下列选项中,合法的c语言...
http://www.qqread.com/cpp/y221800.html 2006-10-17
[C/C++]内的更多内容

2000年9月基础知识知识和c语言程序设计答案及评分标准
一、选择题: (1)b (2)d (3)a (4)a (5)c (6)b (7)a (8)c (9)b (10)b (11)d (12)b (13)d (14)c (15)d (16)b (17)a (18)c (19)b (20)a (21)d (22)d (23)a (24)c (25)c (26)c (27)b (28)b (29)a (30)a (31)d (32)b (33)c (34)d (3...
http://www.qqread.com/cpp/y221798.html 2006-10-17
[C/C++]内的更多内容

2001年9月基础知识知识和c语言程序设计答案及评分标准
一、选择题((1)-(40)题每题1分,(41)-(50)题每题2分,共60分) (1)b(2)a(3)d(4)d(5)c(6)a(7)b(8)d(9)a(10)c (11)d(12)a(13)b(14)c(15)d(16)a(17)c(18)b(19)d(20)b (21)d(22)b(23)d...
http://www.qqread.com/cpp/y221801.html 2006-10-17
[C/C++]内的更多内容


[上一页] [33] [32] [31] [30] [29] [28] [27] [26] [25] [下一页]

您可以点击右边查看标题索引页

  相关关键字: