Home / C Programming / Functions :: Discussion

Discussion :: Functions

  1. Which of the following function calculates the square of 'x' in C?

  2. A.

     sqr(x)

    B.

     pow(2, x)

    C.

     pow(x, 2)

    D.

     power(2, x)

    E.

     power(x, 2)

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    Explanation Not Provided


Be The First To Comment