摘要: 假定x和y为double型,则表达式x=2,y=x+3/2的值是[阅读全文:]
摘要: 以下程序的功能是:通过函数func 输入字符,并统计输入字符的个数。输入时用字符@作为输入结束标志。[阅读全文:]
摘要: 若有如下说明和定义struct test{ int ml; char m2; float m3; union uu {char ul[5]; int u2[2][阅读全文:]
摘要: 以下程序的输出结果是#include <stdio.h>main(){int j, a[]={1,3,5,7,9,11,13,15},*p=a+5;[阅读全文:]
摘要: 有以下程序段main(){ int a=5,*b,**c; c=&b; b=&a; ……} 程序在执行了c=&b;b=&a[阅读全文:]
摘要: 以下程序的功能是调用函数fun计算m=1-2+3-4+…+9-10,并输出结果,请填空。int fun( int n){ int m=0[阅读全文:]
摘要: 如下程序段#include <stdio.h>#include <ctype.h>#include <conio.h>int fun[阅读全文:]
摘要: 有以下程序#include <stdio.h>#define N 4void fun(int a[][N], int b[]){ int i;for(i=0;[阅读全文:]
摘要: 有如下程序void func1(int st[],int i){ printf("%c",st[i]); if(i}void func2(int st[],int i)[阅读全文:]
摘要: 若变量c为char类型,能正确判断出c为小写字母的表达式是[阅读全文:]