码迷,mamicode.com
首页 > 其他好文 > 详细

形参和实参传递函数对比

时间:2017-06-18 13:21:06      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:log   stdio.h   拷贝   值传递   传递   实参   clu   形参和实参   print   

#include <stdio.h>
#include <malloc.h>
#include "string.h"

struct student
{
    int age;
    char *name;//char name[10];
};
/* 指针传递,省去拷贝时间 */
void stuprint(student *pst)
{
    printf("形参地址%p\r\n",pst);
    printf("pst->age [%d]\r\n",pst->age);
    printf("pst->name[%s]\r\n",pst->name);
    pst->age=pst->age +1;
    printf("pst->age [%d]\r\n",pst->age);
    printf("pst->name[%s]\r\n",pst->name);
}
/* 数值传递 */
void stuprint1(student st)
{
    printf("形参地址%p\r\n",&st);
    printf("st.age [%d]\r\n",st.age);
    printf("st.name[%s]\r\n",st.name);
    st.age=st.age+1;
    printf("st.age [%d]\r\n",st.age);
    printf("st.name[%s]\r\n",st.name);
}
int main()
{
    student stu;
    stu.age=90;
    stu.name="kl";
    printf("实参地址%p\r\n",&stu);
    stuprint(&stu);
    printf("main stu.age[%d]\r\n",stu.age);
    return 0;

}

 

形参和实参传递函数对比

标签:log   stdio.h   拷贝   值传递   传递   实参   clu   形参和实参   print   

原文地址:http://www.cnblogs.com/cheshl/p/7043788.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!