ch8_14.cpp
Upload User: gzy2011
Upload Date: 2021-02-09
Package Size: 20k
Code Size: 0k
Development Platform:

Visual C++

  1. //file ch8_14.cpp
  2. #include"iostream.h"
  3. int* getint(char *str)
  4. {
  5.  int value=20;
  6.  cout<<str<<endl;
  7.  return &value;   // warning:将局部变量的地址返回
  8. }
  9. void somefn(char* str)
  10. {
  11.  int a=40;
  12.  cout<<str<<endl;
  13.  
  14. }
  15. void main(void)
  16. {
  17.  int* pr=getint("input a value:");
  18.  
  19.  cout<<*pr<<endl;
  20.  somefn("It is uncertain.");
  21.  cout<<*pr<<endl;
  22. }