Skip to content
Snippets Groups Projects
Commit 34a44afb authored by Nayoung Kim's avatar Nayoung Kim
Browse files

editing

parent 5104cf2f
No related branches found
No related tags found
No related merge requests found
......@@ -1252,14 +1252,16 @@ int main()
* -O2 코드보다 빠르다는 보장은 없음
* 인라인 함수 (inline)
![inline](./image/inline.jpg)
* 호출 없이 함수의 코드를 그 자리에서 실행
* 컴파일러는 함수를 사용하는 부분에 함수의 코드를 복제해서 넣어줌
* 함수 호출 과정이 없어 속도가 비교적 빠름
```
inline 반환값자료형 함수이름(매개변수자료형 매개변수이름)
{
}
```
* 호출 없이 함수의 코드를 그 자리에서 실행
* 컴파일러는 함수를 사용하는 부분에 함수의 코드를 복제해서 넣어줌
* 함수 호출 과정이 없어 속도가 비교적 빠름
```
#include <stdio.h>
inline int add(int a, int b)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment