【答案】若有以下程序: #include <stdio.h> int *fun(int *s,int *t) {if

返回首页智慧树时间:2022-11-15 19:20
题目 / 答案提交正确答案

若有以下程序: #include <stdio.h> int *fun(int *s,int *t) {if(*s<*t) s=t; return s; } int main(void) {int a=3,b=6,*p=&a,*q=&b,*r; r=fun(p,q); printf("%d,%d,%d ",*p,*q,*r); return 0; } 则程序的输出结果是()。

A.3,3,6

B.3,6,6

C.6,3,3

D.6,6,3

正确答案:B

本文链接:https://www.oyuuu.com/Ti/ZhiHuiShu/352924.html

关键字  浏览量:
上一篇:在宏定义#define PI 3.1415926 中,用宏名PI代替一个()。
下一篇:若有以下程序: #include <stdio.h> int fun(int x) { if(x>10
相关问题
  • 【智慧树】下列程序的运行结果是()。 #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 x) { if(x>10
  • 【智慧树】有以下程序: #define ADD(x) x+x #include "stdio.h" int m
  • 【智慧树】在“文件包含”预处理语句的使用形式中,当#include后面的文件名用” ”(双引号)括起时,寻找被包含文件的方式是()
  • 【智慧树】以下程序的输出结果是()。 #include <stdio.h> #define MUL(x,y) (x)*