logo

CuriousTab

CuriousTab

Discussion


Home C Programming Strings Comments

  • Question
  • What will be the output of the program?
    #include<stdio.h>
    #include<string.h>
    
    int main()
    {
        char str1[5], str2[5];
        int i;
        gets(str1);
        gets(str2);
        i = strcmp(str1, str2);
        printf("%d\n", i);
        return 0;
    }
    


  • Options
  • A. Unpredictable integer value
  • B. 0
  • C. -1
  • D. Error

  • Correct Answer
  • Unpredictable integer value 

    Explanation
    gets() gets collects a string of characters terminated by a new line from the standard input stream stdin.

    The gets(str1) read the input string from user and store in variable str1.

    The gets(str2) read the input string from user and store in variable str2.

    The code i = strcmp(str1, str2); The strcmp not only returns -1, 0 and +1, but also other negative or positive values. So the value of i is "unpredictable integer value".

    printf("%d\n", i); It prints the value of variable i.


    Strings problems


    Search Results


    • 1. What will be the output of the program?
      #include<stdio.h>
      #include<string.h>
      
      int main()
      {
          char str[] = "India\0\CURIOUSTAB\0";
          printf("%s\n", str);
          return 0;
      }
      

    • Options
    • A. CURIOUSTAB
    • B. India
    • C. India CURIOUSTAB
    • D. India\0CURIOUSTAB
    • Discuss
    • 2. What will be the output of the program?
      #include<stdio.h>
      #include<string.h>
      
      int main()
      {
          char str[] = "India\0\CURIOUSTAB\0";
          printf("%d\n", strlen(str));
          return 0;
      }
      

    • Options
    • A. 10
    • B. 6
    • C. 5
    • D. 11
    • Discuss
    • 3. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          char str1[] = "Hello";
          char str2[] = "Hello";
          if(str1 == str2)
              printf("Equal\n");
          else
              printf("Unequal\n");
          return 0;
      }
      

    • Options
    • A. Equal
    • B. Unequal
    • C. Error
    • D. None of above
    • Discuss
    • 4. What will be the output of the program?
      #include<stdio.h>
      #include<string.h>
      
      int main()
      {
          char str1[20] = "Hello", str2[20] = " World";
          printf("%s\n", strcpy(str2, strcat(str1, str2)));
          return 0;
      }
      

    • Options
    • A. Hello
    • B. World
    • C. Hello World
    • D. WorldHello
    • Discuss
    • 5. What will be the output of the program?
      #include<stdio.h>
      #include<string.h>
      
      int main()
      {
          static char s[] = "Hello!";
          printf("%d\n", *(s+strlen(s)));
          return 0;
      }
      

    • Options
    • A. 8
    • B. 0
    • C. 16
    • D. Error
    • Discuss
    • 6. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          printf("India", "CURIOUSTAB\n");
          return 0;
      }
      

    • Options
    • A. Error
    • B. India CURIOUSTAB
    • C. India
    • D. CURIOUSTAB
    • Discuss
    • 7. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          char *names[] = { "Suresh", "Siva", "Sona", "Baiju", "Ritu"};
          int i;
          char *t;
          t = names[3];
          names[3] = names[4];
          names[4] = t;
          for(i=0; i<=4; i++)
              printf("%s,", names[i]);
          return 0;
      }
      

    • Options
    • A. Suresh, Siva, Sona, Baiju, Ritu
    • B. Suresh, Siva, Sona, Ritu, Baiju
    • C. Suresh, Siva, Baiju, Sona, Ritu
    • D. Suresh, Siva, Ritu, Sona, Baiju
    • Discuss
    • 8. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          static char s[25] = "The cocaine man";
          int i=0;
          char ch;
          ch = s[++i];
          printf("%c", ch);
          ch = s[i++];
          printf("%c", ch);
          ch = i++[s];
          printf("%c", ch);
          ch = ++i[s];
          printf("%c", ch);
          return 0;
      }
      

    • Options
    • A. hhe!
    • B. he c
    • C. The c
    • D. Hhec
    • Discuss
    • 9. What will be the output of the program If characters 'a', 'b' and 'c' enter are supplied as input?
      #include<stdio.h>
      
      int main()
      {
          void fun();
          fun();
          printf("\n");
          return 0;
      }
      void fun()
      {
          char c;
          if((c = getchar())!= '\n')
              fun();
          printf("%c", c);
      }
      

    • Options
    • A. abc abc
    • B. bca
    • C. Infinite loop
    • D. cba
    • Discuss
    • 10. What will be the output of the program?
      #include<stdio.h>
      #include<string.h>
      
      int main()
      {
          char sentence[80];
          int i;
          printf("Enter a line of text\n");
          gets(sentence);
          for(i=strlen(sentence)-1; i >=0; i--)
              putchar(sentence[i]);
          return 0;
      }
      

    • Options
    • A. The sentence will get printed in same order as it entered
    • B. The sentence will get printed in reverse order
    • C. Half of the sentence will get printed
    • D. None of above
    • Discuss


    Comments

    There are no comments.

Enter a new Comment