ctrl +N后你可以新建你想要的文件
c/c++Header File 是c/c++头文件
C++ Soruce File 是源文件
例如你新建一个c/c++Header File 名字为Test
里面写
int max(int a ,int b)
{
return a>b?a:b;
}
然后你建一个C++ Soruce File 名字为test
里面写
#include <stdio.h>
#include "Test.h"
void main()
{
int a=1,b=3,c;
c=max(a,b);
printf("%d",c);
}
这样就可以了!