logo

CuriousTab

CuriousTab

Discussion


Home C Programming Arrays Comments

  • Question
  • What will be the output of the program if the array begins at 65472 and each integer occupies 2 bytes?
    #include<stdio.h>
    
    int main()
    {
        int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 1, 7, 8, 9, 0};
        printf("%u, %u\n", a+1, &a+1);
        return 0;
    }
    


  • Options
  • A. 65474, 65476
  • B. 65480, 65496
  • C. 65480, 65488
  • D. 65474, 65488

  • Correct Answer
  • 65480, 65496 

    Explanation
    Step 1: int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 1, 7, 8, 9, 0}; The array a[3][4] is declared as an integer array having the 3 rows and 4 colums dimensions.

    Step 2: printf("%u, %u\n", a+1, &a+1);

    The base address(also the address of the first element) of array is 65472.

    For a two-dimensional array like a reference to array has type "pointer to array of 4 ints". Therefore, a+1 is pointing to the memory location of first element of the second row in array a. Hence 65472 + (4 ints * 2 bytes) = 65480

    Then, &a has type "pointer to array of 3 arrays of 4 ints", totally 12 ints. Therefore, &a+1 denotes "12 ints * 2 bytes * 1 = 24 bytes".

    Hence, begining address 65472 + 24 = 65496. So, &a+1 = 65496

    Hence the output of the program is 65480, 65496


    Arrays problems


    Search Results


    • 1. What will be the output of the program?
      #include<stdio.h>
      void fun(int **p);
      
      int main()
      {
          int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 8, 7, 8, 9, 0};
          int *ptr;
          ptr = &a[0][0];
          fun(&ptr);
          return 0;
      }
      void fun(int **p)
      {
          printf("%d\n", **p);
      }
      

    • Options
    • A. 1
    • B. 2
    • C. 3
    • D. 4
    • Discuss
    • 2. What will be the output of the program in Turb C (under DOS)?
      #include<stdio.h>
      
      int main()
      {
          int arr[5], i=0;
          while(i<5)
              arr[i]=++i;
      
          for(i=0; i<5; i++)
              printf("%d, ", arr[i]);
      
          return 0;
      }
      

    • Options
    • A. 1, 2, 3, 4, 5,
    • B. Garbage value, 1, 2, 3, 4,
    • C. 0, 1, 2, 3, 4,
    • D. 2, 3, 4, 5, 6,
    • Discuss
    • 3. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          void fun(int, int[]);
          int arr[] = {1, 2, 3, 4};
          int i;
          fun(4, arr);
          for(i=0; i<4; i++)
              printf("%d,", arr[i]);
          return 0;
      }
      void fun(int n, int arr[])
      {
          int *p=0;
          int i=0;
          while(i++ < n)
              p = &arr[i];
          *p=0;
      }
      

    • Options
    • A. 2, 3, 4, 5
    • B. 1, 2, 3, 4
    • C. 0, 1, 2, 3
    • D. 3, 2, 1 0
    • Discuss
    • 4. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          float arr[] = {12.4, 2.3, 4.5, 6.7};
          printf("%d\n", sizeof(arr)/sizeof(arr[0]));
          return 0;
      }
      

    • Options
    • A. 5
    • B. 4
    • C. 6
    • D. 7
    • Discuss
    • 5. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          static int a[2][2] = {1, 2, 3, 4};
          int i, j;
          static int *p[] = {(int*)a, (int*)a+1, (int*)a+2};
          for(i=0; i<2; i++)
          {
              for(j=0; j<2; j++)
              {
                  printf("%d, %d, %d, %d\n", *(*(p+i)+j), *(*(j+p)+i), 
                                          *(*(i+p)+j), *(*(p+j)+i));
              }
          }
          return 0;
      }
      

    • Options
    • A. 1, 1, 1, 1
      2, 3, 2, 3
      3, 2, 3, 2
      4, 4, 4, 4
    • B. 1, 2, 1, 2
      2, 3, 2, 3
      3, 4, 3, 4
      4, 2, 4, 2
    • C. 1, 1, 1, 1
      2, 2, 2, 2
      2, 2, 2, 2
      3, 3, 3, 3
    • D. 1, 2, 3, 4
      2, 3, 4, 1
      3, 4, 1, 2
      4, 1, 2, 3
    • Discuss
    • 6. What will be the output of the program if the array begins 1200 in memory?
      #include<stdio.h>
      
      int main()
      {
          int arr[]={2, 3, 4, 1, 6};
          printf("%u, %u, %u\n", arr, &arr[0], &arr);
          return 0;
      }
      

    • Options
    • A. 1200, 1202, 1204
    • B. 1200, 1200, 1200
    • C. 1200, 1204, 1208
    • D. 1200, 1202, 1200
    • Discuss
    • 7. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          int a[5] = {5, 1, 15, 20, 25};
          int i, j, m;
          i = ++a[1];
          j = a[1]++;
          m = a[i++];
          printf("%d, %d, %d", i, j, m);
          return 0;
      }
      

    • Options
    • A. 2, 1, 15
    • B. 1, 2, 5
    • C. 3, 2, 15
    • D. 2, 3, 20
    • Discuss
    • 8. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          int arr[1]={10};
          printf("%d\n", 0[arr]);
          return 0;
      }
      

    • Options
    • A. 1
    • B. 10
    • C. 0
    • D. 6
    • Discuss
    • 9. What will be the output of the program in 16-bit platform (under DOS)?
      #include<stdio.h>
      
      int main()
      {
          struct node
          {
              int data;
              struct node *link;
          };
          struct node *p, *q;
          p = (struct node *) malloc(sizeof(struct node));
          q = (struct node *) malloc(sizeof(struct node));
          printf("%d, %d\n", sizeof(p), sizeof(q));
          return 0;
      }
      

    • Options
    • A. 2, 2
    • B. 8, 8
    • C. 5, 5
    • D. 4, 4
    • Discuss
    • 10. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          union var
          {
              int a, b;
          };
          union var v;
          v.a=10;
          v.b=20;
          printf("%d\n", v.a);
          return 0;
      }
      

    • Options
    • A. 10
    • B. 20
    • C. 30
    • D. 0
    • Discuss


    Comments

    There are no comments.

Enter a new Comment