Use pointers to functions as function arguments

Source: Internet
Author: User

One of the usual uses of function pointer variables is to pass pointers as parameters to other functions.

Examples of calling function pointers:

int int (*compare) (elemtype*, elemtype*))

Where compare is the function pointer name, (elemtype*, elemtype*) is the parameter of the function pointer.

Examples of calling function pointers:

if 0 )    return i;

The parameters &e1 and &e2 are two variables of type elemtype*.

Second, for example application

The Qsort function in Stdlib.h is often used in ACM competitions, in which there is a textbook-style function pointer application demonstration.

#include <stdio.h>#include<stdlib.h>intCompConst void*a,Const void*b) {    return*(int*) A-* (int*) b;}intMain () {intn =5; int*array = (int*)malloc(nsizeof(int)); inti =0;  for(; i<n; i++)    {        * (array + i) =Ten-i; } qsort (array, N,sizeof(int), comp);  for(i =0; i<n; i++) {printf ("%d\t", Array[i]); }    return 0;}

Use pointers to functions as function arguments

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.