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"
// 추가하고 싶은 만큼 계속 적으면 된다.