ch6_3_1.cpp

来自「上面的程序是关于钱能的C++课后习题答案」· C++ 代码 · 共 19 行

CPP
19
字号
//***********************
//**    ch6_3_1.cpp    **
//***********************

#include <iostream.h>

static void staticFn();
void fn();

void fn()
{
  staticFn();
  cout <<"this is fn()\n";
}

void staticFn()
{
  cout <<"this is staticFn()\n";
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?