随笔1

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的主要内容,如果未能解决你的问题,请参考以下文章

创业6+1+2-Alpha冲刺置顶随笔

Beta冲刺-用心聚落步

Beta冲刺-用心聚落步

MVC+EF 随笔小计——分部视图(Partial View)及Html.Partial和Html.Action差异

代码调试随笔

随笔13 java中的普通代码块,构造代码块,静态代码块