?? c33.cpp
字號(hào):
// c33.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream.h>
#include "DoNothing.h"
void fn( int i );
int main(int argc, char* argv[])
{
fn(10);
fn(20);
return 0;
}
void fn( int i )
{
static DoNothing dn(i);
cout << "In Function fn() with i = " << i << endl;
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -