有以下程序段,在空白处填入(),可以使程序正确运行。 include <stdio.h> int (int x,int y)

有以下程序段,在空白处填入(),可以使程序正确运行。 include <stdio.h> int (int x,int y) {if(x>y)return &x; else return &y; } main() {int a=3,b=5,*p; p=f(a,b); printf("%d",*p); } A、f B、*f C、(*f) D、其余选项都不对

时间:2024-04-12 16:14:07

相似题目