1.

What will be the output of the following C code?
#include <stdio.h>
void f(int);
void (*fun)() = f;
int main(int argc, char *argv[])
{
fun(16);
return 0;
}
void f(int k)
{
printf("%d n", k);
}

A. Undefined behaviour
B. Compilation Error
C. Garbage value
D. 16
E. None of these
Answer» E. None of these


Discussion

No Comment Found