说明以下代码输出情况

function a(){
    console.log('a');
    c();
}

function b(){
    console.log('b');
    a();
}

function c(){
    console.log('c')
}

a();
b();
c();
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Last Updated: 2019-9-3 06:33:06