题目 / 答案提交正确答案
若有以下程序: #include <stdio.h> int fun(int x) { if(x>10) {printf("%d-",x%10); fun(x/10); } else printf("%d",x); return; } int main(void) { int z=123456; fun(z); return 0; } 则程序的输出结果是()。
A.1-2-3-4-5-6-
B.1-2-3-4-5-6
C.6-5-4-3-2-1-
D.6-5-4-3-2-1
正确答案:D
关键字 浏览量:次
上一篇:若有以下程序: #include <stdio.h> int *fun(int *s,int *t) {if
下一篇:形参数组与实参数组,在内存空间中是()的。
相关问题
【智慧树】下列程序的运行结果是()。 #include <stdio.h> void op(int (*p)[3])
【智慧树】以下程序运行时,若输入5,则程序的输出结果是()。 #include <stdio.h> int fun(i
【智慧树】若有以下程序: #include <stdio.h> void f(int *q,int n) {int i
【智慧树】以下程序运行时,若输入ab012kd99pk8,则程序的输出结果是()。 #include <stdio.h>
【智慧树】若有以下程序: #include <stdio.h> int *fun(int *s,int *t) {if
【智慧树】有以下程序: #define ADD(x) x+x #include "stdio.h" int m
【智慧树】在“文件包含”预处理语句的使用形式中,当#include后面的文件名用” ”(双引号)括起时,寻找被包含文件的方式是()
【智慧树】以下程序的输出结果是()。 #include <stdio.h> #define MUL(x,y) (x)*