Int (* (*FP) (void *)) [10]; Pointer type to function

Source: Internet
Author: User

<pre lang= "C" escaped= "true" >
Int (* (*FP) (void *)) [10]; This type is broken down with typedef.

First step: This pointer is a pointer to the function T1
typedef int (*t1 (void *)) [10];
T1 *FP;

Step Two: T1 is a function, the return value is T2, the argument is (void *)
typedef int (*T2) [10];
typedef T2 T1 (void *);
T1 *FP;


Step three: T2 is a pointer to the T3 type
typedef int T3[10];
typedef T3 *T2;
typedef T2 T1 (void *);
T1 *FP;

</pre>

Int (* (*FP) (void *)) [10]; Pointer type to function

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.