logo

CuriousTab

CuriousTab

Discussion


Home C Programming Variable Number of Arguments Comments

  • Question
  • In a function that receives variable number of arguments the fixed arguments passed to the function can be at the end of argument list.


  • Options
  • A. True
  • B. False

  • Correct Answer
  • False 


  • Variable Number of Arguments problems


    Search Results


    • 1. For a function receives variable number of arguments it is necessary that the function should receive at least one fixed argument.

    • Options
    • A. True
    • B. False
    • Discuss
    • 2. A function that receives variable number of arguments should use va_arg() to extract arguments from the variable argument list.

    • Options
    • A. True
    • B. False
    • Discuss
    • 3. The macro va_arg is used to extract an argument from the variable argument list and advance the pointer to the next argument.

    • Options
    • A. True
    • B. False
    • Discuss
    • 4. va_list is an array that holds information needed by va_arg and va_end

    • Options
    • A. True
    • B. False
    • Discuss
    • 5. A function that receives variable number of arguments should use va_arg() to extract the last argument from the variable argument list.

    • Options
    • A. True
    • B. False
    • Discuss
    • 6. It is necessary to call the macro va_end if va_start is called in the function.

    • Options
    • A. Yes
    • B. No
    • Discuss
    • 7. Can we pass a variable argument list to a function at run-time?

    • Options
    • A. Yes
    • B. No
    • Discuss
    • 8. While defining a variable argument list function we drop the ellipsis(...)?

    • Options
    • A. Yes
    • B. No
    • Discuss
    • 9. Can we write a function that takes a variable argument list and passes the list to another function?

    • Options
    • A. Yes
    • B. No
    • Discuss
    • 10. Can the fixed arguments passed to the function that accepts variable argument list, occur at the end?

    • Options
    • A. Yes
    • B. No
    • Discuss


    Comments

    There are no comments.

Enter a new Comment