Code/C++

[C++] 함수 (function)

이성훈 Ethan 2024. 9. 4. 22:17
int add(int _x, int _y)
{
	int result = _x + _y;
    return result;
}

add(2,3) // 5