Home / C Programming / Complicated Declarations :: Yes / No Questions

C Programming :: Complicated Declarations

  1. Is the following declaration correct?
    typedef *void (*pfun)(**int, *float);

  2. A.
    Yes
    B.
    No

    View Answer

    Workspace

    Discuss Discuss in Forum


  3. Is the following declaration correct?
    char (* ( *f())[])();

  4. A.
    Yes
    B.
    No

    View Answer

    Workspace

    Discuss Discuss in Forum


  5. Is the following declaration correct?
    char far *far *ptr;

  6. A.
    Yes
    B.
    No

    View Answer

    Workspace

    Discuss Discuss in Forum


  7. Is the following declaration correct?
    void(*f)(int, void(*)());

  8. A.
    Yes
    B.
    No

    View Answer

    Workspace

    Discuss Discuss in Forum


  9. Are the following declarations same?

    char far *far *scr; char far far** scr; 

  10. A.
    Yes
    B.
    No

    View Answer

    Workspace

    Discuss Discuss in Forum