Home / C Programming / Structures, Unions, Enums :: Discussion

Discussion :: Structures, Unions, Enums

  1. How will you free the allocated memory ?

  2. A.
    remove(var-name);
    B.
    free(var-name);
    C.
    delete(var-name);
    D.
    dalloc(var-name);

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    No answer description available for this question.


Be The First To Comment