#include <stdio.h> int f1(int x) { return x * 2; } int f2(int x) { return x * 4; } int main() { int (*fptr1)(int) = &f1; fptr1 = &f2; fptr1(3); }