C++入门经典-例5.9-使用空类型指针执行函数

C++入门经典-例5.9-使用空类型指针执行函数 1:运行代码: // 5.9.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <iostream> using std::cout; using std::endl; int plus(int b) { return b+1; } int main() { void* pV
相关文章
相关标签/搜索