logo

CuriousTab

CuriousTab

Discussion


Home C Programming C Preprocessor See What Others Are Saying!
  • Question
  • What will be the output of the program?
    #include<stdio.h>
    #define MIN(x, y) (x<y)? x : y;
    int main()
    {
        int x=3, y=4, z;
        z = MIN(x+y/2, y-1);
        if(z > 0)
            printf("%d\n", z);
        return 0;
    }
    


  • Options
  • A. 3
  • B. 4
  • C. 0
  • D. No output

  • Correct Answer


  • Explanation
    The macro MIN(x, y) (x<y)? x : y; returns the smallest value from the given two numbers.

    Step 1: int x=3, y=4, z; The variable x, y, z are declared as an integer type and the variable x, y are initialized to value 3, 4 respectively.

    Step 2: z = MIN(x+y/2, y-1); becomes,

    => z = (x+y/2 < y-1)? x+y/2 : y - 1;

    => z = (3+4/2 < 4-1)? 3+4/2 : 4 - 1;

    => z = (3+2 < 4-1)? 3+2 : 4 - 1;

    => z = (5 < 3)? 5 : 3;

    The macro return the number 3 and it is stored in the variable z.

    Step 3: if(z > 0) becomes if(3 > 0) here the if condition is satisfied. It executes the if block statements.

    Step 4: printf("%d\n", z);. It prints the value of variable z.

    Hence the output of the program is 3


    More questions

    • 1. Identify which of the following are declarations

      1 : extern int x;
      2 : float square ( float x ) { ... }
      3 : double pow(double, double);

    • Options
    • A. 1
    • B. 2
    • C. 1 and 3
    • D. 3
    • Discuss
    • 2. What will be the output of the program?
      #include<stdio.h>
      #include<stdlib.h>
      
      union employee
      {
          char name[15];
          int age;
          float salary;
      };
      const union employee e1;
      
      int main()
      {
          strcpy(e1.name, "K");
          printf("%s %d %f", e1.name, e1.age, e1.salary);
          return 0;
      }
      

    • Options
    • A. Error: RValue required
    • B. Error: cannot convert from 'const int *' to 'int *const'
    • C. Error: LValue required in strcpy
    • D. No error
    • Discuss
    • 3. Point out the error in the program in 16-bit platform?
      #include<stdio.h>
      
      int main()
      {
          struct bits
          {
              int i:40;
          }bit;
      
          printf("%d\n", sizeof(bit));
          return 0;
      }
      

    • Options
    • A. 4
    • B. 2
    • C. Error: Bit field too large
    • D. Error: Invalid member access in structure
    • Discuss
    • 4. Point out the error in the following program.
      #include<stdio.h>
      #include<stdarg.h>
      
      int main()
      {
          void display(int num, ...);
          display(4, 12.5, 13.5, 14.5, 44.3);
          return 0;
      }
      void display(int num, ...)
      {
          float c; int j;
          va_list ptr;
          va_start(ptr, num);
          for(j=1; j<=num; j++)
          {
              c = va_arg(ptr, float);
              printf("%f", c);
          }
      }
      

    • Options
    • A. Error: invalid va_list declaration
    • B. Error: var c data type mismatch
    • C. No error
    • D. No error and Nothing will print
    • Discuss
    • 5. What will be the output of the program (sample.c) given below if it is executed from the command line (Turbo C in DOS)?
      cmd> sample 1 2 3
      /* sample.c */
      #include<stdio.h>
      
      int main(int argc, char *argv[])
      {
          int j;
          j = argv[1] + argv[2] + argv[3];
          printf("%d", j);
          return 0;
      }
      

    • Options
    • A. 6
    • B. sample 6
    • C. Error
    • D. Garbage value
    • Discuss
    • 6. va_list is an array that holds information needed by va_arg and va_end

    • Options
    • A. True
    • B. False
    • Discuss
    • 7. A structure can contain similar or dissimilar elements

    • Options
    • A. True
    • B. False
    • Discuss
    • 8. Which of the statements is correct about the program?
      #include<stdio.h>
      
      int main()
      {
          float a=3.14;
          char *j;
          j = (char*)&a;
          printf("%d\n", *j);
          return 0;
      }
      

    • Options
    • A. It prints ASCII value of the binary number present in the first byte of a float variable a.
    • B. It prints character equivalent of the binary number present in the first byte of a float variable a.
    • C. It will print 3
    • D. It will print a garbage value
    • Discuss
    • 9. What will be the output of the program?
      #include<stdio.h>
      int main()
      {
          int i=4;
          switch(i)
          {
              default:
                 printf("This is default\n");
              case 1:
                 printf("This is case 1\n");
                 break;
              case 2:
                 printf("This is case 2\n");
                 break;
              case 3:
                 printf("This is case 3\n");
          }
          return 0;
      }
      

    • Options
    • A. This is default
      This is case 1
    • B. This is case 3
      This is default
    • C. This is case 1
      This is case 3
    • D. This is default
    • Discuss
    • 10. What will be the output of the program?
      #include<stdio.h>
      int main()
      {
          int a = 300, b, c;
          if(a >= 400)
              b = 300;
          c = 200;
          printf("%d, %d, %d\n", a, b, c);
          return 0;
      }
      

    • Options
    • A. 300, 300, 200
    • B. Garbage, 300, 200
    • C. 300, Garbage, 200
    • D. 300, 300, Garbage
    • Discuss


    Comments

    There are no comments.

Enter a new Comment