Home / C Programming / Pointers :: Discussion

Discussion :: Pointers

  1. What will be the output of the program ?

    #include 
     int main() 
     {   
       printf("%c\n", 7["FRESHERGATE"]);
       return 0;
     } 
    

     

  2. A.

    Error: in printf

    B.

    Nothing will print

    C.

    print "X" of FRESHERGATE

    D.

    print "7"

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    No answer description available for this question.


Be The First To Comment