logo

CuriousTab

CuriousTab

Discussion


Home C Programming Constants See What Others Are Saying!
  • Question
  • Point out the error in the program.
    #include<stdio.h>
    #define MAX 128
    
    int main()
    {
        char mybuf[] = "India";
        char yourbuf[] = "CURIOUSTAB";
        char *const ptr = mybuf;
        *ptr = 'a';
        ptr = yourbuf;
        return 0;
    }
    


  • Options
  • A. Error: unknown pointer conversion
  • B. Error: cannot convert ptr const value
  • C. No error
  • D. None of above

  • Correct Answer
  • Error: cannot convert ptr const value 

    Explanation
    Step 1: char mybuf[] = "India"; The variable mybuff is declared as an array of characters and initialized with string "India".

    Step 2: char yourbuf[] = "CURIOUSTAB"; The variable yourbuf is declared as an array of characters and initialized with string "CURIOUSTAB".

    Step 3: char *const ptr = mybuf; Here, ptr is a constant pointer, which points at a char.

    The value at which ptr it points is not a constant; it will not be an error to modify the pointed character; There will be an error only to modify the pointer itself.

    Step 4: *ptr = 'a'; The value of ptr is assigned to 'a'.

    Step 5: ptr = yourbuf; Here, we are changing the pointer itself, this will result in the error "cannot modify a const object".


    More questions

    • 1. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          char huge *near *far *ptr1;
          char near *far *huge *ptr2;
          char far *huge *near *ptr3;
          printf("%d, %d, %d\n", sizeof(**ptr1), sizeof(ptr2), sizeof(*ptr3));
          return 0;
      }
      

    • Options
    • A. 4, 4, 4
    • B. 2, 2, 2
    • C. 2, 8, 4
    • D. 2, 4, 8
    • Discuss
    • 2. The '.' operator can be used access structure elements using a structure variable.

    • Options
    • A. True
    • B. False
    • Discuss
    • 3. What will be the output of the program (sample.c) given below if it is executed from the command line (turbo c under DOS)?
      cmd> sample Good Morning
      /* sample.c */
      #include<stdio.h>
      
      int main(int argc, char *argv[])
      {
          printf("%d %s", argc, argv[1]);
          return 0;
      }
      

    • Options
    • A. 3 Good
    • B. 2 Good
    • C. Good Morning
    • D. 3 Morning
    • Discuss
    • 4. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          int i=32, j=0x20, k, l, m;
          k=i|j;
          l=i&j;
          m=k^l;
          printf("%d, %d, %d, %d, %d\n", i, j, k, l, m);
          return 0;
      }
      

    • Options
    • A. 0, 0, 0, 0, 0
    • B. 0, 32, 32, 32, 32
    • C. 32, 32, 32, 32, 0
    • D. 32, 32, 32, 32, 32
    • Discuss
    • 5. In a macro call the control is passed to the macro.

    • Options
    • A. True
    • B. False
    • Discuss
    • 6. What will be the output of the program under DOS?
      #include<stdio.h>
      
      int main()
      {
          char huge *near *far *ptr1;
          char near *far *huge *ptr2;
          char far *huge *near *ptr3;
          printf("%d, %d, %d\n", sizeof(ptr1), sizeof(**ptr2), sizeof(ptr3));
          return 0;
      }
      

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

    • Options
    • A. 25
    • B. 11
    • C. Error
    • D. Garbage value
    • Discuss
    • 8. Point out the error in the program.
      #include<stdio.h>
      const char *fun();
      
      int main()
      {
          *fun() = 'A';
          return 0;
      }
      const char *fun()
      {
          return "Hello";
      }
      

    • Options
    • A. Error: RValue required
    • B. Error: Lvalue required
    • C. Error: fun() returns a pointer const character which cannot be modified
    • D. No error
    • Discuss
    • 9. Which statement will you add to the following program to ensure that the program outputs "CuriousTab" on execution?
      #include<stdio.h>
      
      int main()
      {
          char s[] = "CuriousTab";
          char t[25];
          char *ps, *pt;
          ps = s;
          pt = t;
          while(*ps)
              *pt++ = *ps++;
      
          /* Add a statement here */
          printf("%s\n", t);
          return 0;
      }
      

    • Options
    • A. *pt='';
    • B. pt='\0';
    • C. pt='\n';
    • D. *pt='\0';
    • Discuss
    • 10. A float occupies 4 bytes. If the hexadecimal equivalent of these 4 bytes are A, B, C and D, then when this float is stored in memory in which of the following order do these bytes gets stored?

    • Options
    • A. ABCD
    • B. DCBA
    • C. 0xABCD
    • D. Depends on big endian or little endian architecture
    • Discuss


    Comments

    There are no comments.

Enter a new Comment