Home / C Programming / C Fundamentals :: Discussion

Discussion :: C Fundamentals

  1. Find the output of the following program.

    void main()

    {

    int i=065, j=65;

    printf("%d %d", i, j);

    }

  2. A.

     53 65

    B.

     65 65

    C.

     065 65

    D.

     053 65

    E.

     Syntax error

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    As octal 65 ( 065 ) is equivalent of decimal value 53.


Be The First To Comment