笔果题库
高级语言程序设计
历年真题
搜题找答案,就上笔果题库
设int n;,与循环语句while(n!=0){…. }等价的是
搜题找答案,就上笔果题库
设int a=0;,则for(;a==0;a++);的循环次数是
搜题找答案,就上笔果题库
下列定义正确的是
搜题找答案,就上笔果题库
设char str[ ]="ABCD";,语句printf("%s\n",str+1);的输出结果是
搜题找答案,就上笔果题库
文件使用方式“w b”是
搜题找答案,就上笔果题库
设struct {int x,y;}z[2]={1,2,3,4};,语句print("%d\n", z[0]. y/z[1]. x);的输出结果是
搜题找答案,就上笔果题库
设int m, n=0,*p=&m;,与语句m=n;等价的是
搜题找答案,就上笔果题库
设char str[]="2022";,语句printf("%d,%d\n",sizeof(str), strlen(str));的输出结果是
搜题找答案,就上笔果题库
设int n;,表达式!(n%3)&&n%5==0成立的含义是______。
搜题找答案,就上笔果题库
在C语言中,十六进制整型常量的开头符号是______。