有以下程序#include <stdio.h>#define f(x) x*x*xmain(){ int a=3,s,t; s=f(a+1);t=f((a+1)); printf("%d,%dn",s,t);}程序运行后的输出结果是
发布时间:2024-07-09
A.10,64
B.10,10
C.64,10
D.64,64
试卷相关题目
- 1有以下程序#include <stdio.h>int f(int n);main(){ int a=3,s; s=f(a);s=s+f(a);printf("%dn",s);}int f(int n){ static int a=1; n+=a++; return n;}程序运行后的输出结果是
A.7
B.8
C.9
D.10
开始考试点击查看答案 - 2设有以下函数:void fun(int n,char *s){……}则下面对函数指针的定义和赋值均正确的是
A.void (*pf)(); pf=fun;
B.void *pf(); pf=fun;
C.void *pf(); *pf=fun;
D.void (*pf)(int,char);pf=&fun;
开始考试点击查看答案 - 3下列函数的功能是fun(char *a,char *b){ while((*b=*a)!='