Home » C Programming » Operators » Question
  1. Which function in the following expression will be called first?
    num = functionC(8) - functionB(5, 6) / functionA(2, 3, 4);
    1. functionA();
    2. functionC();
    3. Cannot be predicted
    4. functionB();
    5. None of these
Correct Option: C

Cannot be predicted



Your comments will be displayed only after manual approval.