adplus-dvertising
frame-decoration

Question

What will be the output of the program ?
#include<stdio.h>
#include<string.h>

int main()
{
    char str[] = "Compsci\0\Bits\0";
    printf("%s\n", str);
    return 0;
}

a.

Bits

b.

Compsci

c.

Compsci Bits

d.

Compsci\0Bits

Posted under Strings C Programming

Answer: (b).Compsci

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What will be the output of the program ?

Similar Questions

Discover Related MCQs

Q. Which of the following statements are correct about the below declarations?

char *p = "Sanjay";
char a[] = "Sanjay";

1: There is no difference in the declarations and both serve the same purpose.
2: p is a non-const pointer pointing to a non-const string, whereas a is a const pointer pointing to a non-const pointer.
3: The pointer p can be modified to point to another string, whereas the individual characters within array a can be changed.
4: In both cases the '\0' will be added at the end of the string "Sanjay".

Q. Which of the following statements are correct ?

1: A string is a collection of characters terminated by '\0'.
2: The format specifier %s is used to print a string.
3: The length of the string can be obtained by strlen().
4: The pointer CANNOT work on string.

Q. Which of the following statement is correct?

Q. Which of the following statements are correct about the below declarations?
char *p = "Sanjay";char a[] = "Sanjay";

1: There is no difference in the declarations and both serve the same purpose.

2: p is a non-const pointer pointing to a non-const string, whereas a is a const pointer pointing to a non-const pointer.

3: The pointer p can be modified to point to another string, whereas the individual characters within array a can be changed.

4: In both cases the '\0' will be added at the end of the string "Sanjay".

Q. Which of the following statements are correct ?

1: A string is a collection of characters terminated by '\0'.
2: The format specifier %s is used to print a string.
3: The length of the string can be obtained by strlen().
4: The pointer CANNOT work on string.

Q. Length of the string "compsciedu" is

Q. How will you print ' ' on the screen?

Q. Which of the following statements are correct ?

1. A string is a collection of characters terminated by '.
2. The format specifier %s is used to print a string.
3. The length of the string can be obtained by strlen().
4. The pointer CANNOT work on string.

Q. Let x be an array.Which of the following operations is illegal?

i) ++x.
ii) x+1.
iii) x++.
iv) x*2.

Q. Which of the following gives the memory address of the first element in array foo, an array with 10 elements?

Q. Enumeration (or enum) is a ______ data type in C.

Q. If we do not explicitly assign values to enum names, the compiler by default assigns values to ?

Q. All enum constants are

Q. String handling functions such as strcmp(), strcpy() etc can be used with enumerated types.

Q. Pick the incorrect statement with respect to enums.

Q. Arithmetic operations are not allowed on enumerated constants.

Q. What is the correct syntax of enum?

Q. What is a String in C Language?

Q. What is the Format specifier used to print a String or Character array in C Printf or Scanf function?

Q. What is the maximum length of a C String?