IS Nested Function allowed in C language?
B
Correct answer
Explanation
Nested functions are NOT allowed in standard C. While some compilers (like GCC) support nested functions as an extension, they are not part of the C language standard. C was designed to be a simple language with functions that can only be defined at file scope, not inside other functions.