logo

CuriousTab

CuriousTab

Discussion


Home C Programming Declarations and Initializations See What Others Are Saying!
  • Question
  • 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

  • Correct Answer
  • 3, 2, 515 

    Explanation
    printf("%d, %d, %d\n", u.ch[0], u.ch[1], u.i); It prints the value of u.ch[0] = 3, u.ch[1] = 2 and it prints the value of u.i means the value of entire union size.

    What is the output of the program? #include<stdio.h>
int main()
{
    union a
    {
        int i;

    So the output is 3, 2, 515.


    More questions

    • 1. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          char *str;
          str = "%d\n";
          str++;
          str++;
          printf(str-2, 300);
          return 0;
      }
      

    • Options
    • A. No output
    • B. 30
    • C. 3
    • D. 300
    • Discuss
    • 2. What will be the output of the program?
      #include<stdio.h>
      #define SQUARE(x) x*x
      
      int main()
      {
          float s=10, u=30, t=2, a;
          a = 2*(s-u*t)/SQUARE(t);
          printf("Result = %f", a);
          return 0;
      }
      

    • Options
    • A. Result = -100.000000
    • B. Result = -25.000000
    • C. Result = 0.000000
    • D. Result = 100.000000
    • Discuss
    • 3. What will be the output of the program?
      #include<stdio.h>
      int main()
      {
          int i=4, j=-1, k=0, w, x, y, z;
          w = i || j || k;
          x = i && j && k;
          y = i || j &&k;
          z = i && j || k;
          printf("%d, %d, %d, %d\n", w, x, y, z);
          return 0;
      }
      

    • Options
    • A. 1, 1, 1, 1
    • B. 1, 1, 0, 1
    • C. 1, 0, 0, 1
    • D. 1, 0, 1, 1
    • Discuss
    • 4. Which standard library function will you use to find the last occurance of a character in a string in C?

    • Options
    • A. strnchar()
    • B. strchar()
    • C. strrchar()
    • D. strrchr()
    • Discuss
    • 5. A macro must always be defined in capital letters.

    • Options
    • A. True
    • B. False
    • Discuss
    • 6. Point out the error in the program?
      typedef struct data mystruct;
      struct data
      {
          int x;
          mystruct *b;
      };
      

    • Options
    • A. Error: in structure declaration
    • B. Linker Error
    • C. No Error
    • D. None of above
    • Discuss
    • 7. Left shifting an unsigned int or char by 1 is always equivalent to multiplying it by 2.

    • Options
    • A. True
    • B. False
    • Discuss
    • 8. Can you combine the following two statements into one?
      char *p;
      p = (char*) malloc(100);
      

    • Options
    • A. char p = *malloc(100);
    • B. char *p = (char) malloc(100);
    • C. char *p = (char*)malloc(100);
    • D. char *p = (char *)(malloc*)(100);
    • Discuss
    • 9. How many bytes are occupied by near, far and huge pointers (DOS)?

    • Options
    • A. near=2 far=4 huge=4
    • B. near=4 far=8 huge=8
    • C. near=2 far=4 huge=8
    • D. near=4 far=4 huge=8
    • Discuss
    • 10. Can a structure can point to itself?

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


    Comments

    There are no comments.

Enter a new Comment