前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >C语言数组,指针小案例

C语言数组,指针小案例

作者头像
用户4645519
发布2020-09-07 11:06:08
1.2K0
发布2020-09-07 11:06:08
举报
/*
 ============================================================================
 Name        : hello.c
 Author      : liming
 Version     :
 Copyright   : Your copyright notice
 Description : Hello World in C, Ansi-style
 ============================================================================
 */

#include <stdio.h>
#include <stdlib.h>

void fun(int m, char * (*p)[5])
{
	int i = 0;
	char ** buff = (char**)p;
    char **tm = NULL;

	for (i=0; i<m; i++)
	{
        tm = buff + i;
		//printf("%s\n", *(buff+i));
		printf("%s\n", *(tm));
	}
}

int main(void)
{
    char * buf[]= {"aa", "bb", "cc", "dd", "ff"};
    char * ptr = NULL;
    char a = 9;
    ptr = &a;
    ptr++;
    ptr++;
    ptr++;
    puts("!!!Hello World!!!"); /* prints !!!Hello World!!! */
    
    fun(sizeof(buf)/4, &buf);
    
    printf("sizeof(buf)/4 = %d\n", sizeof(buf) / sizeof(buf[0]) );
    
    return 0;
}
!!!Hello World!!!
aa
bb
cc
dd
ff
sizeof(buf)/4 = 5


Terminated with return code 0
Press any key to continue ...
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018-08-19 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档