adplus-dvertising
frame-decoration

Question

What is the maximum length of a C String?

a.

32 characters

b.

64 characters

c.

256 characters

d.

None of the above

Posted under Strings C Programming

Answer: (d).None of the above

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

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

Similar Questions

Discover Related MCQs

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

Q. What is a String in C Language?

Q. What is the correct syntax of enum?

Q. Arithmetic operations are not allowed on enumerated constants.

Q. Pick the incorrect statement with respect to enums.

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

Q. All enum constants are

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

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

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

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 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. How will you print ' ' on the screen?

Q. Length of the string "compsciedu" is

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 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 statement is correct?

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 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".