1.

What will be the output of the following C code?#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)); }

A. 21
B. 13
C. Compilation Error
D. 34
E. None of these
Answer» E. None of these


Discussion

No Comment Found