⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pr06011.cpp

📁 《标准C++宝典》源码
💻 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 + -