首页 > 其他 > 详细

形参、实参、返回值

时间:2014-03-02 00:02:14      阅读:624      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
// hellopoint.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <stdio.h>
#include <malloc.h>
#include <string.h>
char* GetMem(int nsize);
void GetChar(char*p );
int _tmain(int argc, _TCHAR* argv[])
{
    char* temp=NULL;
    temp=GetMem(18);

 
    printf("\ntemp add  %x  内容如下%s",&temp,temp);

    char *temp2=NULL;
    GetChar(temp2);
    printf("\n%s",temp2);
    printf("\ntemp2 add  %x  内容为 %s",&temp2,temp2);

    while (true)
    {
    }
    return 0;
}

char* GetMem(int nsize)
{
    char* p=NULL;
    p=(char*)malloc(sizeof(char)*nsize);
    
    strcpy(p,"here is ok");;
    printf("\np  add %x context is %s",&p,p);
    return p;
}


void GetChar(char*p )
{
    p=(char*)malloc(sizeof(char)*18);
    strcpy(p,"here is 2222");
    printf("\n GetChar p2 add %x  context is %s",&p,p);
}



bubuko.com,布布扣

bubuko.com,布布扣

形参、实参、返回值,布布扣,bubuko.com

形参、实参、返回值

原文:http://www.cnblogs.com/songtzu/p/3574706.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!