📄 pr06011.cpp
字号:
////////////////////////////////////////
// File Name: pr06011.cpp
////////////////////////////////////////
#include <iostream>
// Function prototypes.
void FileFunc(), EditFunc();
////////////////////////////////////////
// The main() function.
////////////////////////////////////////
main()
{
// Declare a pointer to a function.
void (*funcp)();
// Put an address in the pointer, and
// call the function through the pointer.
funcp = FileFunc;
(*funcp)();
// Put another address in the pointer, and
// call the function through the pointer.
funcp = EditFunc;
(*funcp)();
return 0;
}
void FileFunc()
{
std::cout << "File Function" << std::endl;
}
void EditFunc()
{
std::cout << "Edit Function" << std::endl;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -