#include<파일 이름>
C언어 컴파일러를 구축하게 되면 <stdio.h>, <stdlib.h> 등 다양한 라이브러리들이 우리의 컴퓨터 내의 시스템 디렉토리에 포함이 되는데 거기에서 파일을 검색해서 프로그램상에 띄워준다.
#include"파일 이름"
#define PI 3.1415926535
int main(void) {
int r = 10; // 원의 반지름
printf("원의 둘레: %.2f\n", 2 * PI * r);
system("pause");
return 0;
}
#define POW(x) (x * x)
int main(void) {
int x = 10;
printf("x의 제곱: %d\n", POW(x));
system("pause");
return 0;
}
#define ll long long
#define ld long double
int main(void) {
ll a = 23465390234;
ld b = 134.5939;
printf("%.1f\n", a * b);
system("pause");
return 0;
}
#ifndef _TEMP_H_
#define _TEMP_H_
int add(int a, int b) {
return a + b;
}
#endif
#ifndef로 헤더파일 정의 시
⬇ 아래와 같이 헤더파일이 중복되어 include되더라도 정상 작동됨
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include "temp.h"
#include "temp.h"
int main(void) {
printf("%d\n", add(5, 3));
system("pause");
return 0;
}
main.c C언어 파일
#include <stdio.h>
#include "temp.h"
int main(void) {
printf("%d\n", add(50, 30));
system("pause");
return 0;
}
temp.h 헤더파일
: 함수에 대한 정의만
#ifndef _TEMP_H_
#define _TEMP_H_
int add(int a, int b);
#endif
temp.c C언어 파일
: temp.h 파일 정의
#include "temp.h"
int add(int a, int b) {
return a + b;
}