指针问题
Posted bai_jimmy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了指针问题相关的知识,希望对你有一定的参考价值。
#include <stdio.h> int max(int x, int y){ return x > y ? x : y; } int main(){ int x = 1, y = 2; //函数指针 int(* p_max)(int x, int y); p_max = &max; //指针数组 int *p1[10]; //数组指针 int (*p2)[10]; printf("%d\n", max(x, y)); printf("%d\n", (*p_max)(x, y)); }
以上是关于指针问题的主要内容,如果未能解决你的问题,请参考以下文章