Home / C Programming / Pointers :: Discussion

Discussion :: Pointers

  1. Can you combine the following two statements into one?

    char *p;
    p = (char*) malloc(100); 
    

     

  2. A.

    char p = *malloc(100);

    B.

    char *p = (char) malloc(100);

    C.

    char *p = (char*)malloc(100);

    D.

    char *p = (char *)(malloc*)(100);

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    No answer description available for this question.


Be The First To Comment