function call stack

ChaeMin Lyu·2023년 4월 22일
1
#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;
}

profile
유부초밥을 좋아하는 채민류

0개의 댓글