linux程序设计_程序分解,linux
问题补充:
#include<stdio.h>
int add(int a,int b)
{
return a + b;
}
int mul(int a,int b)
{
return a * b;
}
void main()
{
int s1,s2;
s1 = add(3,5);
s2 = mul(3,5);
printf("a + b = %d\n,a * b =%d\n",s1,s2);
}
最佳答案
没明白要问什么,程序分析?,分成不同的文件比如分出头文件和主文件?
最佳答案由网友 暗黑破坏牛 提供
其他回答
暂无其它回答!