1. Question: What will be the output of the program?
    1. #include<stdio.h>
    2. #include<stdarg.h>
    3. void fun(char *msg, ...);
    4.  
    5. int main()
    6. {
    7. fun("VCampus", 1, 4, 7, 11, 0);
    8. return 0;
    9. }
    10. void fun(char *msg, ...)
    11. {
    12. va_list ptr;
    13. int num;
    14. va_start(ptr, msg);
    15. num = va_arg(ptr, int);
    16. num = va_arg(ptr, int);
    17. printf("%d", num);
    18. }

    A
    VCampus 1 7 11 0

    B
    1

    C
    4

    D
    7

    Note: No answer description available for this question.
    1. Report
  2. Question: What will be the output of the program?
    1. #include<stdio.h>
    2. #include<stdarg.h>
    3. void fun1(char, int, int *, float *, char *);
    4. void fun2(char ch, ...);
    5. void (*p1)(char, int, int *, float *, char *);
    6. void (*p2)(char ch, ...);
    7.  
    8. int main()
    9. {
    10. char ch='A'; int i=10;
    11. float f=3.14; char *p="Hello";
    12. p1=fun1;
    13. p2=fun2;
    14. (*p1)(ch, i, &i, &f, p);
    15. (*p2)(ch, i, &i, &f, p);
    16. return 0;
    17. }
    18. void fun1(char ch, int i, int *pi, float *pf, char *p)
    19. {
    20. printf("%c %d %d %f %s \n", ch, i, *pi, *pf, p);
    21. }
    22. void fun2(char ch, ...)
    23. {
    24. int i, *pi; float *pf; char *p;
    25. va_list list;
    26. printf("%c ", ch);
    27. va_start(list, ch);
    28. i = va_arg(list, int);
    29. printf("%d ", i);
    30. pi = va_arg(list, int*);
    31. printf("%d ", *pi);
    32. pf = va_arg(list, float*);
    33. printf("%f ", *pf);
    34. p = va_arg(list, char *);
    35. printf("%s", p);
    36. }

    A
    A 10 3.14 A 10 3.14

    B
    A 10 10 3.140000 Hello A 10 10 3.140000 Hello

    C
    A 10 Hello A 10 Hello

    D
    Error

    Note: No answer description available for this question.
    1. Report
  3. Question: What will be the output of the program?
    1. #include<stdio.h>
    2. #include<stdarg.h>
    3. void dumplist(int, ...);
    4.  
    5. int main()
    6. {
    7. dumplist(2, 4, 8);
    8. dumplist(3, 6, 9, 7);
    9. return 0;
    10. }
    11. void dumplist(int n, ...)
    12. {
    13. va_list p; int i;
    14. va_start(p, n);
    15.  
    16. while(n-->0)
    17. {
    18. i = va_arg(p, int);
    19. printf("%d", i);
    20. }
    21. va_end(p);
    22. printf("\n");
    23. }

    A
    2 4 3 6

    B
    2 4 8 3, 6, 9, 7

    C
    4 8 6 9 7

    D
    1 1 1 1 1 1 1

    Note: No answer description available for this question
    1. Report
  4. Question: What will be the output of the program?
    1. #include<stdio.h>
    2. #include<stdarg.h>
    3. void display(int num, ...);
    4.  
    5. int main()
    6. {
    7. display(4, 'A', 'B', 'C', 'D');
    8. return 0;
    9. }
    10. void display(int num, ...)
    11. {
    12. char c, c1; int j;
    13. va_list ptr, ptr1;
    14. va_start(ptr, num);
    15. va_start(ptr1, num);
    16. for(j=1; j<=num; j++)
    17. {
    18. c = va_arg(ptr, int);
    19. printf("%c", c);
    20. c1 = va_arg(ptr1, int);
    21. printf("%d\n", c1);
    22. }
    23. }

    A
    A, A B, B C, C D, D

    B
    A, a B, b C, c D, d

    C
    A, 65 B, 66 C, 67 D, 68

    D
    A, 0 B, 0 C, 0 C, 0

    Note: No answer description available for this question.
    1. Report
  5. Question: What will be the output of the program?
    1. #include<stdio.h>
    2. #include<stdarg.h>
    3. void fun1(int num, ...);
    4. void fun2(int num, ...);
    5.  
    6. int main()
    7. {
    8. fun1(1, "Apple", "Boys", "Cats", "Dogs");
    9. fun2(2, 12, 13, 14);
    10. return 0;
    11. }
    12. void fun1(int num, ...)
    13. {
    14. char *str;
    15. va_list ptr;
    16. va_start(ptr, num);
    17. str = va_arg(ptr, char *);
    18. printf("%s ", str);
    19. }
    20. void fun2(int num, ...)
    21. {
    22. va_list ptr;
    23. va_start(ptr, num);
    24. num = va_arg(ptr, int);
    25. printf("%d", num);
    26. }

    A
    Dogs 12

    B
    Cats 14

    C
    Boys 13

    D
    Apple 12

    Note: No answer description available for this question
    1. Report
Copyright © 2025. Powered by Intellect Software Ltd