Home / CSE MCQs / C-MCQs :: Constants - C

CSE MCQs :: 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

    Discuss Discuss in Forum