logo

CuriousTab

CuriousTab

Discussion


Home C Programming Strings Comments

  • Question
  • What will be the output of the program?
    #include<stdio.h>
    
    int main()
    {
        printf(5+"Good Morning\n");
        return 0;
    }
    


  • Options
  • A. Good Morning
  • B. Good
  • C. M
  • D. Morning

  • Correct Answer
  • Morning 

    Explanation
    printf(5+"Good Morning\n"); It skips the 5 characters and prints the given string.

    Hence the output is "Morning"


    Strings problems


    Search Results


    • 1. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          char p[] = "%d\n";
          p[1] = 'c';
          printf(p, 65);
          return 0;
      }
      

    • Options
    • A. A
    • B. a
    • C. c
    • D. 65
    • Discuss
    • 2. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          char str[] = "Nagpur";
          str[0]='K';
          printf("%s, ", str);
          str = "Kanpur";
          printf("%s", str+1);
          return 0;
      }
      

    • Options
    • A. Kagpur, Kanpur
    • B. Nagpur, Kanpur
    • C. Kagpur, anpur
    • D. Error
    • Discuss
    • 3. If the size of pointer is 4 bytes then What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          char *str[] = {"Frogs", "Do", "Not", "Die", "They", "Croak!"};
          printf("%d, %d", sizeof(str), strlen(str[0]));
          return 0;
      }
      

    • Options
    • A. 22, 4
    • B. 25, 5
    • C. 24, 5
    • D. 20, 2
    • Discuss
    • 4. What will be the output of the following program in 16 bit platform assuming that 1022 is memory address of the string "Hello1" (in Turbo C under DOS)?
      #include<stdio.h>
      
      int main()
      {
          printf("%u %s\n", &"Hello1", &"Hello2");
          return 0;
      }
      

    • Options
    • A. 1022 Hello2
    • B. Hello1 1022
    • C. Hello1 Hello2
    • D. 1022 1022
    • E. Error
    • Discuss
    • 5. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          int i;
          char a[] = "\0";
          if(printf("%s", a))
              printf("The string is not empty\n");
          else
              printf("The string is empty\n");
          return 0;
      }
      

    • Options
    • A. The string is not empty
    • B. The string is empty
    • C. No output
    • D. 0
    • Discuss
    • 6. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          char str1[] = "Hello";
          char str2[10];
          char *t, *s;
          s = str1;
          t = str2;
          while(*t=*s)
              *t++ = *s++;
          printf("%s\n", str2);
          return 0;
      }
      

    • Options
    • A. Hello
    • B. HelloHello
    • C. No output
    • D. ello
    • Discuss
    • 7. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          char str = "CuriousTab";
          printf("%s\n", str);
          return 0;
      }
      

    • Options
    • A. Error
    • B. CuriousTab
    • C. Base address of str
    • D. No output
    • Discuss
    • 8. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          printf(5+"CuriousTab\n");
          return 0;
      }
      

    • Options
    • A. Error
    • B. CuriousTab
    • C. CURIOUSTAB
    • D. None of above
    • Discuss
    • 9. What will be the output of the program?
      #include<stdio.h>
      #include<string.h>
      
      int main()
      {
          static char str1[] = "dills";
          static char str2[20];
          static char str3[] = "Daffo";
          int i;
          i = strcmp(strcat(str3, strcpy(str2, str1)), "Daffodills");
          printf("%d\n", i);
          return 0;
      }
      

    • Options
    • A. 0
    • B. 1
    • C. 2
    • D. 4
    • Discuss
    • 10. If char=1, int=4, and float=4 bytes size, What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          char ch = 'A';
          printf("%d, %d, %d", sizeof(ch), sizeof('A'), sizeof(3.14f));
          return 0;
      }
      

    • Options
    • A. 1, 2, 4
    • B. 1, 4, 4
    • C. 2, 2, 4
    • D. 2, 4, 8
    • Discuss


    Comments

    There are no comments.

Enter a new Comment