已知一个函数的原型是: int fn(double x);若要以5.27为实参调用该函数,应使用表达式______。
查看答案
若下面程序运行时输出结果为l,A,10.12,B,3.5请将程序补充完整。#include using namespace std;int main(){ void test(int,char,double ______); test(1,'A',10.1); test(2,'B'); return 0;}void test(int a,char b,double c){ cout<
下列程序的输出结果是______。#include #include using namespace std;void fun(const char *s,char &c){c=s[strlen(s)/2];}int main(){char str[]="ABCDE";char ch=str[1];fun(str,ch);cout<
执行下列程序段以后程序的输出是______。void add(int &a){a++;}int main(){int b=3;add(b);cout<
在面向结构程序设计语言中,______是程序组成的基本单位。