Home / C Programming / Functions :: Discussion

Discussion :: Functions

  1. Which of the following is a complete function?

  2. A.

     int funct();

    B.

     int funct(int x) { return x=x+1; }

    C.

     void funct(int) { printf(“Hello"); }

    D.

     void funct(x) { printf(“Hello"); }

    E.

     None of these

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    Explanation Not Provided


Be The First To Comment