Multiple choice technology

IS Nested Function allowed in C language?

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
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.