✅ 목표 (Goal)

include 할때 <>, “”의 차이점에 대해 알아보자.

✅ 헤더파일을 포함할때..

그런데 요새는 #include "stdio.h"이래도 되는거 같던데?

🔹 컴파일러가 제공하는 헤더 파일을 포함하기

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
// 추가하고 싶은 만큼 계속 적으면 된다.

🔹 사용자가 만든 헤더파일은…

내가 만일 pig.h, cow.h를 만들었다면

아래와 같이 포함하면 된다.

#include "pig.h"
#include "cow.h"
// 추가하고 싶은 만큼 계속 적으면 된다.