摘要: 假定x和y為double型,則表達式x=2,y=x+3/2的值是[閱讀全文:]
摘要: 以下程序的功能是:通過函數(shù)func 輸入字符,并統(tǒng)計輸入字符的個數(shù)。輸入時用字符@作為輸入結(jié)束標志。[閱讀全文:]
摘要: 若有如下說明和定義struct test{ int ml; char m2; float m3; union uu {char ul[5]; int u2[2][閱讀全文:]
摘要: 以下程序的輸出結(jié)果是#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; ……} 程序在執(zhí)行了c=&b;b=&a[閱讀全文:]
摘要: 以下程序的功能是調(diào)用函數(shù)fun計算m=1-2+3-4+…+9-10,并輸出結(jié)果,請?zhí)羁铡nt 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為小寫字母的表達式是[閱讀全文:]