标签:clu printf turn 函数指针 alt 优先级 include 引用 指针变量
转:函数指针
函数指针是指向函数的指针变量。 因此“函数指针”本身首先应是指针变量,只不过该指针变量指向函数。这正如用指针变量可指向整型变量、字符型、数组一样,这里是指向函数。如前所述,C在编译时,每一个函数都有一个入口地址,该入口地址就是函数指针所指向的地址。有了指向函数的指针变量后,可用该指针变量调用函数,就如同用指针变量可引用其他类型变量一样,在这些概念上是大体一致的。函数指针有两个用途:调用函数和做函数的参数。
1
2
3
4
5
6
7
8
9
10
11
12
|
#include<stdio.h> int max( int x, int y){ return (x>y? x:y);} int main() { int (*ptr)( int , int ); int a, b, c; ptr = max; scanf ( "%d%d" , &a, &b); c = (*ptr)(a,b); printf ( "a=%d, b=%d, max=%d" , a, b, c); return 0; } |
标签:clu printf turn 函数指针 alt 优先级 include 引用 指针变量
原文地址:https://www.cnblogs.com/jacklong-yin/p/9631620.html