6.0不能通过
为什么要单独写一个plus.c文件?这样不可以吗?
主函数 #include "plus.h"
#include <stdio.h>
int main(int argc, char* argv[])
{
int a=1,b=2;
printf("%d\n",plus(a,b));
return 0;
}
int plus(int a,int b)
{
return (a+b);
}
plus.h :
#ifndef PLUS_H
#define PLUS_H
int plus(int a, int b);
#endif