ch8_14.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:
C#编程
开发平台:
Visual C++
- //**********************
- //** ch8_14.cpp **
- //**********************
- #include <iostream.h>
- int* getInt(char* str) //指针函数
- {
- int value=20;
- cout <<str <<endl;
- return &value; //warning: 将局部变量的地址返回是不妥的
- }
- void somefn(char* str)
- {
- int a=40;
- cout <<str <<endl;
- }
- void main()
- {
- int* pr=getInt("input a value:"); //赋值取自返回的指针值
- cout <<*pr <<endl; //第一次输出*pr
- somefn("It is uncertain.");
- cout <<*pr <<endl; //第二次输出*pr
- }