#include <stdio.h> int calc(int n, int m) { return n + m; } int main() { int (*calc_ptr)(int, int); calc_ptr = calc; printf("The Addition of two numbers is: %d", (int)calc_ptr(21, 13)); }
34
Previous Question Next Question
Your comments will be displayed only after manual approval.