logo

CuriousTab

CuriousTab

Discussion


Home C Programming Arrays See What Others Are Saying!
  • 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


    More questions

    • 1. If int is 2 bytes wide.What will be the output of the program?
      #include <stdio.h>
      void fun(char**);
      
      int main()
      {
          char *argv[] = {"ab", "cd", "ef", "gh"};
          fun(argv);
          return 0;
      }
      void fun(char **p)
      {
          char *t;
          t = (p+= sizeof(int))[-1];
          printf("%s\n", t);
      }
      

    • Options
    • A. ab
    • B. cd
    • C. ef
    • D. gh
    • Discuss
    • 2. What will be the output of the program?
      #include<stdio.h>
      int main()
      {
          int x = 3;
          float y = 3.0;
          if(x == y)
              printf("x and y are equal");
          else
              printf("x and y are not equal");
          return 0;
      }
      

    • Options
    • A. x and y are equal
    • B. x and y are not equal
    • C. Unpredictable
    • D. No output
    • Discuss
    • 3. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          int i=1;
          if(!i)
              printf("CuriousTab,");
          else
          {
              i=0;
              printf("C-Program");
              main();
          }
          return 0;
      }
      

    • Options
    • A. prints "CuriousTab, C-Program" infinitely
    • B. prints "C-Program" infinetly
    • C. prints "C-Program, CuriousTab" infinitely
    • D. Error: main() should not inside else statement
    • Discuss
    • 4. Point out the error, if any in the while loop.
      #include<stdio.h>
      int main()
      {
          void fun();
          int i = 1;
          while(i <= 5)
          {
              printf("%d\n", i);
              if(i>2)
                  goto here;
          }
      return 0;
      }
      void fun()
      {
          here:
          printf("It works");
      }
      

    • Options
    • A. No Error: prints "It works"
    • B. Error: fun() cannot be accessed
    • C. Error: goto cannot takeover control to other function
    • D. No error
    • Discuss
    • 5. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          int i;
          i = scanf("%d %d", &i, &i);
          printf("%d\n", i);
          return 0;
      }
      

    • Options
    • A. 1
    • B. 2
    • C. Garbage value
    • D. Error: cannot assign scanf to variable
    • Discuss
    • 6. What will be the output of the program in 16-bit platform (Turbo C under DOS)?
      #include<stdio.h>
      
      int main()
      {
          printf("%d, %d, %d", sizeof(3.0f), sizeof('3'), sizeof(3.0));
          return 0;
      }
      

    • Options
    • A. 8, 1, 4
    • B. 4, 2, 8
    • C. 4, 2, 4
    • D. 10, 3, 4
    • Discuss
    • 7. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          int k=1;
          printf("%d == 1 is" "%s\n", k, k==1?"TRUE":"FALSE");
          return 0;
      }
      

    • Options
    • A. k == 1 is TRUE
    • B. 1 == 1 is TRUE
    • C. 1 == 1 is FALSE
    • D. K == 1 is FALSE
    • Discuss
    • 8. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          int fun(int);
          int i = fun(10);
          printf("%d\n", --i);
          return 0;
      }
      int fun(int i)
      {
         return (i++);
      }
      

    • Options
    • A. 9
    • B. 10
    • C. 11
    • D. 8
    • Discuss
    • 9. Point out the error in the program?
      #include<stdio.h>
      
      int main()
      {
          struct a
          {
              float category:5;
              char scheme:4;
          };
          printf("size=%d", sizeof(struct a));
          return 0;
      }
      

    • Options
    • A. Error: invalid structure member in printf
    • B. Error in this float category:5; statement
    • C. No error
    • D. None of above
    • Discuss
    • 10. What is the output of the program
      #include<stdio.h>
      int main()
      {
          struct emp
          {
              char name[20];
              int age;
              float sal;
          };
          struct emp e = {"Tiger"};
          printf("%d, %f\n", e.age, e.sal);
          return 0;
      }
      

    • Options
    • A. 0, 0.000000
    • B. Garbage values
    • C. Error
    • D. None of above
    • Discuss


    Comments

    There are no comments.

Enter a new Comment