logo

CuriousTab

CuriousTab

Discussion


Home C Programming Pointers See What Others Are Saying!
  • Question
  • What will be the output of the program?
    #include<stdio.h>
    int *check(static int, static int);
    
    int main()
    {
        int *c;
        c = check(10, 20);
        printf("%d\n", c);
        return 0;
    }
    int *check(static int i, static int j)
    {
        int *p, *q;
        p = &i;
        q = &j;
        if(i >= 45)
            return (p);
        else
            return (q);
    }
    


  • Options
  • A. 10
  • B. 20
  • C. Error: Non portable pointer conversion
  • D. Error: cannot use static for function parameters

  • Correct Answer
  • Error: cannot use static for function parameters 


  • More questions

    • 1. Which of the following statements are correct about the below program?
      #include<stdio.h>
      int main()
      {
          int n = 0, y = 1;
          y == 1? n=0 : n=1;
          if(n)
              printf("Yes\n");
          else
              printf("No\n");
          return 0;
      }
      

    • Options
    • A. Error: Declaration terminated incorrectly
    • B. Error: Syntax error
    • C. Error: Lvalue required
    • D. None of above
    • Discuss
    • 2. What will be the output of the program?
      #include<stdio.h>
      #define MAX(a, b) (a > b? a : b)
      
      int main()
      {
          int x;
          x = MAX(3+2, 2+7);
          printf("%d\n", x);
          return 0;
      }
      

    • Options
    • A. 8
    • B. 9
    • C. 6
    • D. 5
    • Discuss
    • 3. What will be the output of the program?
      #include<stdio.h>
      #define MAN(x, y) ((x)>(y))? (x):(y);
      
      int main()
      {
          int i=10, j=5, k=0;
          k = MAN(++i, j++);
          printf("%d, %d, %d\n", i, j, k);
          return 0;
      }
      

    • Options
    • A. 12, 6, 12
    • B. 11, 5, 11
    • C. 11, 5, Garbage
    • D. 12, 6, Garbage
    • Discuss
    • 4. What will be the output of the program?
      #include<stdio.h>
      #define MAX(a, b, c) (a>b? a>c? a : c: b>c? b : c)
      
      int main()
      {
          int x;
          x = MAX(3+2, 2+7, 3+7);
          printf("%d\n", x);
          return 0;
      }
      

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

    • Options
    • A. 0, 0, 0
      1, 1, 1
      2, 2, 2
      3, 3, 3
    • B. 1, 1, 2
      2, 2, 3
      3, 3, 4
      4, 4, 1
    • C. 1, 1, 1
      2, 2, 2
      3, 3, 3
      3, 4, 4
    • D. 0, 1, 2
      1, 2, 3
      2, 3, 4
      3, 4, 5
    • Discuss
    • 6. 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
    • 7. 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
    • 8. 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
    • 9. 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
    • 10. 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


    Comments

    There are no comments.

Enter a new Comment