컴퓨터/C
인라인(inline) 함수 사용하기
Begi
2022. 6. 29. 20:25
반응형
inline 함수는 다음과 같이 사용한다.
static inline void fun()
{
}
void main()
{
fun();
}
반응형