What is the output of this C code? #include void main() { m(); void m() { printf("hi"); } }A) HiB) Compile time errorC) NothingD) Varies

What is the output of this C code?
    #include <stdio.h>
    void main()
    {
       m();
       void m()
       {
         printf("hi");
       }
    }

Comments