标签:bsp pac mic 源程序 图片 http func clu 教材
源程序:
#include <iostream>
using namespace std;
void func(int a, int b, int c = 0)
{
cout << a << b << c << endl;
}
int main()
{
func(5,9);
system("pause");
return 1;
}
运行结果:
标签:bsp pac mic 源程序 图片 http func clu 教材
原文地址:https://www.cnblogs.com/duanqibo/p/12268491.html