函数指针 与 指针函数

    技术2025-01-10  13

    函数指针,落脚点是指针

     

    例如:int (*f)(int x); f是指针

    用法:

     int fun(int x);

     f = fun;

     

    指针函数:

    例如:int *f(x,y); 返回值是指针

    用法:

    main()

    {

        char *ch(char *,char *);

        char str1[]="I am glad to meet you!";

        char str2[]="Welcom to study C!";

        printf("%s",ch(str1,str2));

    }

    char *ch(char *str1,char *str2)

    最新回复(0)