Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. Comment on the output of this C code?

    int const print()
    {
    printf("AllIndiaExams.in");
    return 0;
    }
    void main()
    {
    print();
    }
  2. A.
    AllIndiaExams.in is printed infinite number of times
    B.
    AllIndiaExams.in
    C.
    Runtime Error
    D.
    complilation error

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    None.


Be The First To Comment