#include <iostream> using namespace std; void sub2(int d) { cout << d << endl; } int sub1(int c /* parameter 변수 */) { // 함수 정의 cout << c << endl; sub2(c); return c + 1; } int main() { int a = 1; int b = sub1(a); // 함수 호출 or 실행 cout << b << endl; return 0; }