int add(int _x, int _y)
{
int result = _x + _y;
return result;
}
add(2,3) // 5
'Code > C++' 카테고리의 다른 글
[C++] 멤버 접근 연산자 (->) (0) | 2024.09.04 |
---|---|
[C++] 정적 변수 (static) 와 상수 변수 (const) (0) | 2024.08.18 |
[C++] 메모리 할당 (0) | 2024.08.16 |
[C++] 네임스페이스 (namespace) (0) | 2024.08.15 |
[C++] 선언 (Declaration)과 정의 (Definition) (0) | 2024.08.14 |