zoukankan      html  css  js  c++  java
  • 玩转多级指针

    #define  _CRT_SECURE_NO_WARNINGS 
    #include <stdlib.h>
    #include <string.h>
    #include <stdio.h>
    
    
    char **getMem51(int num)
    {
        int i = 0;
        char **p2 = NULL;
        p2 = (char **)malloc(sizeof(char *) * num);
        if (p2 == NULL)
        {
            return NULL;
        }
    
        for (i=0; i<num; i++)
        {
            p2[i] = (char *)malloc(sizeof(char)  * 100  ); //char buf[100];
            sprintf(p2[i], "%d%d%d", i+1, i+1, i+1);
        }
        return p2;
    }
    
    int getMem52(char ***p3 , int num)
    {
        int i = 0;
        char **tmp = NULL;
    
        if (p3 == NULL)
        {
            return -1;
        }
        
        tmp = (char **)malloc(sizeof(char *) * num);
        if (tmp == NULL)
        {
            return NULL;
        }
    
        for (i=0; i<num; i++)
        {
            tmp[i] = (char *)malloc(sizeof(char)  * 100  ); //char buf[100];
            sprintf(tmp[i], "%d%d%d", i+1, i+1, i+1);
        }
        *p3 = tmp; 
        //1 2
    
        return 0;
    }
    
    void getMem52_Free(char ***p3 , int num)
    {
        int i = 0;
        char **tmp = NULL;
    
        if (p3 == NULL)
        {
            return ;
        }
        tmp = *p3; 
    
        for (i=0; i<num; i++)
        {
            free(tmp[i]);
        }
        free(tmp);
         
        *p3 = NULL; //把实参赋值成null
    }
    
    
    
    void main66()
    {
        int i = 0, j = 0;
        char **p2 = NULL;
        int num = 5;
        char *tmp = NULL;
        char tmpbuf[100];
        //p2 = getMem51(num);
    
        getMem52(&p2, num);
    
        for (i=0; i<num; i++)
        {
            printf("%s 
    ", p2[i]);
        }
    
    
        getMem52_Free(&p2, num);
        printf("hello...
    ");
        system("pause");
        return ;
    }
  • 相关阅读:
    c# 遍历DataTable
    c# 判断网络状态
    c# 发送Http 请求
    c# 处理Json字符串
    环境搭建(Nginx + PHP7 + Mysql + 运行ThinkPHP5项目)
    c# 获取时间戳
    php 处理 byte
    微信小程序 滚动至元素底部
    mysql 删除 多个字段相同的 重复的 数据
    微信小程序 跑马灯效果
  • 原文地址:https://www.cnblogs.com/yaozhenhua/p/9416559.html
Copyright © 2011-2022 走看看