1.

What will be the output of the following C code?
#include <stdio.h>
void first(int (*x)(int));
int second(int i);
int (*third)(int) = second;
int main()
{
first(third(13));
}
void first(int (*k)(int))
{
k(12);
}
int second(int k)
{
printf("%d n", k);
return k;
}

A. Compilation Error
B. Nothing
C. Garbage value
D. Segmentation fault
E. None of these
Answer» E. None of these


Discussion

No Comment Found