C语言数组,指针小案例

时间:2022-07-24
本文章向大家介绍C语言数组,指针小案例,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。
/*
 ============================================================================
 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("%sn", *(buff+i));
		printf("%sn", *(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 = %dn", 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 ...