C++ 및 C의 헤더 가드 LearnCpp.com | 1.10 — 전처리기를 처음 봅니다.헤더 보호 아래에는 다음과 같은 코드 조각이 있습니다. add.h: #include "mymath.h" int add(int x, int y); 빼다h: #include "mymath.h" int subtract(int x, int y); main.cpp: #include "add.h" #include "subtract.h" 헤더 가드를 구현할 때 다음과 같이 언급됩니다. #ifndef ADD_H #define ADD_H // your declarations here #endif 선언문이 여기에 무엇이 있을까요?그리고, 그래야 합니다.int main()다를 #endif? 추가하고 있습니까?_H컨벤션이나 꼭 해야 할 ..