1 #include"tool.h" 2 void main(){ 3 plus(1,2); 4 }
1 #include"tool.h" 2 void plus(int a,int b){ 3 printf("%d + %d = %d",a,b,a+b); 4 }
1 #include<stdio.h> 2 3 void plus(int a,int b);
main.cpp
tool.cpp
tool.h
Posted 流云飘荡,何求不羁
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了随笔1相关的知识,希望对你有一定的参考价值。
1 #include"tool.h" 2 void main(){ 3 plus(1,2); 4 }
1 #include"tool.h" 2 void plus(int a,int b){ 3 printf("%d + %d = %d",a,b,a+b); 4 }
1 #include<stdio.h> 2 3 void plus(int a,int b);
main.cpp
tool.cpp
tool.h
以上是关于随笔1的主要内容,如果未能解决你的问题,请参考以下文章