摘要: 若int k=8;則執(zhí)行下列程序后,變量k的正確結(jié)果是main(){ int k=8; switch(k) { case 9:k+=1; [閱讀全文:]
摘要: 有以下程序#include <stdio.h>#include <stdlib.h>int fun(int t){ int *p;p=(int*)[閱讀全文:]
摘要: 設(shè)有如下說明typedef struct{ int n; char c; double x;}STD;則以下選項(xiàng)中,能正確定義結(jié)構(gòu)體[閱讀全文:]
摘要: 有如下程序段#include "stdio.h"typedef struct aa{ int a; struct aa *next;} M;void set(M *[閱讀全文:]
摘要: 有以下程序int fun(int n){if(n==1) return 1;else return(n+fun(n-1));}main(){int x;scanf("%d[閱讀全文:]
摘要: 以下程序中調(diào)用scanf函數(shù)給變量a輸入數(shù)值的方法是錯(cuò)誤的,其錯(cuò)誤原因是main(){ int *p,*q,a,b; p[閱讀全文:]
摘要: 若有函數(shù)內(nèi)部說明:int a[3][4];,則數(shù)組a中各元素[閱讀全文:]
摘要: 若x,i,j和k都是int型變量,則計(jì)算表達(dá)式x=(i=4,j=16,k=32)后,x的值為[閱讀全文:]
摘要: 有下列程序main(){ int a[5]={2,4,6,8,10},*p,**k; p=a; k=&p; printf("%d",*(p++)); p[閱讀全文:]
摘要: 面向?qū)ο蟪绦蛟O(shè)計(jì)的三大主要特點(diǎn)分別是封裝性、繼承性和[閱讀全文:]