C++入门经典-例5.5-空类型指针的使用

C++入门经典-例5.5-空类型指针的使用 1:代码如下: // 5.5.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <iostream> using namespace std; int main() { int *pI = NULL; int i = 4; pI = &i; float
相关文章
相关标签/搜索