Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 정수론
- 따라하면서 배우는 C언어
- Algorithm
- 생활코딩
- C언어
- programmers
- 인프런
- 종만북
- 따라하며 배우는 C언어
- BOJ
- dfs
- Cleancode
- String
- web
- Math
- sorting
- DP
- greedy
- Algospot
- JavaScript
- BASIC
- php
- BFS
- Python
- C
- 따배씨
- graph
- 백준
- udemy
- server
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 16.2 전처리기를 준비하는 번역 단계 본문
따배씨 - 따라하며 배우는 C언어
16강 전처리기와 라이브러리
16.2 전처리기를 준비하는 번역 단계 Translation phase
#include <stdio.h>
int main()
{
/*
Program written in C
Translating - 전처리기의 앞에서 이루어 지거나 전처리기에 포함된 과정으로 혼용하여 봄
Preprocessing
Compiling - Compiler 가 모두 처리한다는 표현으로 사용하기도 함
Linking
Executable
*/
/*
International characters
*/
puts("안녕하세요? 한글입니다.\n");
// 국제 다국어로 작성된 코드를 내부적으로 Translating 단계에서 이해 할 수 있는 문자 집합으로 처리
/*
Trigraph Sequences
- Some keyboards don't provide all the symbols used in C.
- Three-character sequences
Trigraph Replacement
??= #
??/ \
??' ^
??( [
??) ]
??! |
??< {
??> }
??- ~
/Zc: trigraphs
*/
int arr[3] = {1, 2, 3};
printf("arr[0] == %d\n", arr[0]);
// printf("arr??(0??) == %d\n", arr??(0??));
/*
Digraphs
- Two-Character sequences
Digrapsh Equivalent
<: [
:> ]
<% {
%> }
%: #
*/
printf("arr[1] == %d\n", arr[1]);
//printf("arr<:1:> == %d\n", arr<:1:>);
/* Two physical lines vs One logical line */
printf("This is a very very very very very very very very\
long long long\n");
/*
Tokens
- Groups separated from each other by spaces, tabs, or lines breaks
Whitespace charaters -> a single space
*/
int /* a variable to count a number*/ n = 1;
// int n = 1;
// 권장하지 않음
return 0;
}
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 16.4 함수 같은 매크로 (0) | 2021.08.12 |
---|---|
[따배씨] 16.3 #define 매크로 (0) | 2021.08.05 |
[따배씨] 16.1 전처리기가 해주는 일들 (0) | 2021.08.03 |
[따배씨] 15.12 메모리 줄맞춤 alignof, alignas (0) | 2021.07.29 |
[따배씨] 15.11 비트필드의 패딩 (0) | 2021.07.29 |
Comments