1. vi sum.hint sum(int a,int b); // 함수원문2. vi sum.c#include "sum.h" int sum(int a,int b){return a+b; }// 내가 만든 헤더파일은 " " 표시3. gcc main.c sum.c 로 각각 컴파일 @메인함수 매개변수int main(int argc,char *argv[])./프로그램명 인자1 인자2 인자3 argv[0] argv[1] argv[2] argv[3]4. 헤더파일 여러개 중복방지..#ifdef TEST_H //test.h 가 없다면 #define TEST_H // 만들고 #else //아니라면. 즉 test.h가 있다면 #define EXERCISE //exercise.h를 만들어라#endif //..