Home / C Programming / Arrays :: Yes / No Questions

C Programming :: Arrays

  1. A pointer to a block of memory is effectively same as an array

  2. A.
    True
    B.
    False

    View Answer

    Workspace

    Discuss Discuss in Forum


  3. Does this mentioning array name gives the base address in all the contexts?

  4. A.
    Yes
    B.
    No

    View Answer

    Workspace

    Discuss Discuss in Forum


  5. Is there any difference int the following declarations?
    int fun(int arr[]);
    int fun(int arr[2]);

  6. A.
    Yes
    B.
    No

    View Answer

    Workspace

    Discuss Discuss in Forum


  7. Are the expressions arr and &arr same for an array of 10 integers?

  8. A.
    Yes
    B.
    No

    View Answer

    Workspace

    Discuss Discuss in Forum