Home / C++ Programming / References :: Discussion

Discussion :: References

  1. Which of the following statement is correct about the program given below?

    #include 
     enum bix 
     {   
        a=1, b, c 
     }; 
     int main() 
     {    
          int x = c;    
          int &y = x;    
          int &z = x;     
          y = b; 
          cout
          return 0;
      }
    

  2. A.

    It will result in a compile time error.

    B.

    The program will print the output 1.

    C.

    The program will print the output 2.

    D.

    The program will print the output 3.

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    No answer description available for this question.


Be The First To Comment