Call Statement Example for C++

Given the following source code:

void func1() {/* ... */}
void main() {
  func1();
}

If you step into func1 and display the Call Stack window, the call statement shown for main is the line number where func1 was called from. The function with the highest entry number in the Call Stack window has no Call Statement entry because it has not itself called any function.