zoukankan      html  css  js  c++  java
  • c语言 指针作为函数参数

    void readlines(char *p)
    {
        if(p != NULL)
      {
        while((*p++ = getchar()) != '\n')
          ;
        *(--p) = '\0';
      }
    } int main() { char s[20]; readlines(s); return 0; }

    指针参数s传入的是一个地址,程序可对s指向的一段地址空间进行操作。

    下面的例程目的为将子程序的字符串拷贝到主程序的字符数组中,但下述代码并不能实现预期目的。

    int readlines(char *p)
    {
        printf("p的地址是%d\n", &p);
        printf("p指向的地址是%d\n", p);
        char st[] = "hello, world";
        printf("st指向的地址是%d\n", st);
        p = st;
        printf("p指向的地址是%d\n", p);
    }
    
    int main()
    {
        char s[20];
        char *pt = s;
        printf("pt的地址是%d\n", &pt);
        printf("pt指向的地址是%d\n", pt);
        readlines(pt);
        printf("pt指向的地址是%d\n", pt);
        return 0;
    }

    程序运行的结果为:
    pt指向的地址是2293536;

    p指向的地址是2293536;

    st指向的地址是2293456;

    p指向的地址是2293456;

    pt指向的地址是2293536;

    可以看到,p的值发生了变化,而pt的值并不改变。pt仅是传值,而并不能通过子程序改变pt的值,即pt还是指向原来的地址空间。

     pt的地址是2293532;

    p的地址是2293472;

    因此,p是子程序的局部变量,p值改变并不意味着pt发生改变。

  • 相关阅读:
    iperf简单说明
    计算后图像大小参数计算
    ipywidgets安装报错
    Cannot uninstall [pacakage]. It is a distutils installed project
    torch
    es-centos7安装注意细节
    jupyter 指定特定的环境
    未来方向
    深度学习过拟合处理
    归一化
  • 原文地址:https://www.cnblogs.com/zqiang3/p/2810158.html
Copyright © 2011-2022 走看看