logo

CuriousTab

CuriousTab

Discussion


Home C Programming Variable Number of Arguments See What Others Are Saying!
  • Question
  • The macro va_start is used to initialise a pointer to the beginning of the list of fixed arguments.


  • Options
  • A. True
  • B. False

  • Correct Answer
  • False 


  • More questions

    • 1. A union cannot be nested in a structure

    • Options
    • A. True
    • B. False
    • Discuss
    • 2. The binary equivalent of 5.375 is

    • Options
    • A. 101.101110111
    • B. 101.011
    • C. 101011
    • D. None of above
    • Discuss
    • 3. Which of the following is the correct order if calling functions in the below code?
      a = f1(23, 14) * f2(12/4) + f3();

    • Options
    • A. f1, f2, f3
    • B. f3, f2, f1
    • C. Order may vary from compiler to compiler
    • D. None of above
    • Discuss
    • 4. If a variable is a pointer to a structure, then which of the following operator is used to access data members of the structure through the pointer variable?

    • Options
    • A. .
    • B. &
    • C. *
    • D. ->
    • Discuss
    • 5. Assuming a integer 2-bytes, What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          printf("%x\n", -1<<3);
          return 0;
      }
      

    • Options
    • A. ffff
    • B. fff8
    • C. 0 
    • D. -1
    • Discuss
    • 6. A float is 4 bytes wide, whereas a double is 8 bytes wide.

    • Options
    • A. True
    • B. False
    • Discuss
    • 7. What will be the output of the program?
      #include<stdio.h>
      #include<string.h>
      
      int main()
      {
          printf("%c\n", "abcdefgh"[4]);
          return 0;
      }
      

    • Options
    • A. Error
    • B. d
    • C. e
    • D. abcdefgh
    • Discuss
    • 8. What is the output of the program?
      #include<stdio.h>
      int main()
      {
          union a
          {
              int i;
              char ch[2];
          };
          union a u;
          u.ch[0] = 3;
          u.ch[1] = 2;
          printf("%d, %d, %d\n", u.ch[0], u.ch[1], u.i);
          return 0;
      }
      

    • Options
    • A. 3, 2, 515
    • B. 515, 2, 3
    • C. 3, 2, 5
    • D. None of these
    • Discuss
    • 9. What will be the output of the program?
      #include<stdio.h>
      int main()
      {
          int X=40;
          {
              int X=20;
              printf("%d ", X);
          }
          printf("%d\n", X);
          return 0;
      }
      

    • Options
    • A. 40 40
    • B. 20 40
    • C. 20
    • D. Error
    • Discuss
    • 10. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          char c=48;
          int i, mask=01;
          for(i=1; i<=5; i++)
          {
              printf("%c", c|mask);
              mask = mask<<1;
          }
          return 0;
      }
      

    • Options
    • A. 12400
    • B. 12480
    • C. 12500
    • D. 12556
    • Discuss


    Comments

    There are no comments.

Enter a new Comment