logo

CuriousTab

CuriousTab

Discussion


Home C Programming Command Line Arguments See What Others Are Saying!
  • Question
  • What will be the output of the program (myprog.c) given below if it is executed from the command line?
    cmd> myprog one two three
    /* myprog.c */
    #include<stdio.h>
    #include<stdlib.h>
    
    int main(int argc, char **argv)
    {
        printf("%s\n", *++argv);
        return 0;
    }
    


  • Options
  • A. myprog
  • B. one
  • C. two
  • D. three

  • Correct Answer
  • one 


  • More questions

    • 1. 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
    • 2. 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
    • 3. A macro must always be defined in capital letters.

    • Options
    • A. True
    • B. False
    • Discuss
    • 4. 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
    • 5. Left shifting an unsigned int or char by 1 is always equivalent to multiplying it by 2.

    • Options
    • A. True
    • B. False
    • Discuss
    • 6. 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
    • 7. 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
    • 8. Can a structure can point to itself?

    • Options
    • A. Yes
    • B. No
    • Discuss
    • 9. 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
    • 10. What will be 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. 515, 515, 4
    • Discuss


    Comments

    There are no comments.

Enter a new Comment