Home » C Programming » Functions » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    void fun();
    int main()
    {
    void fun(int);
    fun(100);
    return 0;
    }
    void fun(int n)
    {
    printf("200 ");
    }
    1. 200
    2. 100
    3. Compilation Error
    4. Runtime Error
    5. None of these
Correct Option: A

200



Your comments will be displayed only after manual approval.