1.

What will be the output of the following C code?
#include <stdio.h>
void function(auto int n);
int main()
{
function(12);
}
void function(auto int n)
{
printf("%d n", n);
}

A. Compilation Error
B. Depend on compiler
C. Depends on the standard
D. 12
E. None of these
Answer» B. Depend on compiler


Discussion

No Comment Found

Related MCQs