Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When/Why is '\0' necessary to mark end of an (char) array?

So I just read an example of how to create an array of characters which represent a string.

The null-character \0 is put at the end of the array to mark the end of the array. Is this necessary?

If I created a char array:

char line[100]; 

and put the word:

"hello\n"

in it, the chars would be placed at the first six indexes line[0] - line[6], so the rest of the array would be filled with null characters anyway?

This books says, that it is a convention that, for example the string constant "hello\n" is put in a character array and terminated with \0.

Maybe I don't understand this topic to its full extent and would be glad for enlightenment.

like image 699
Strict Avatar asked Nov 26 '16 18:11

Strict


People also ask

Why do you need a '\ 0 at the end of a string?

it is used to show that the string is completed.it marks the end of the string. it is mainly used in string type.by default string contain '\0\ character means it show the end of the character in string. end of the array contain ''\0' to stop the array memory allocation for string name.

What is the purpose of '\ 0 character in C?

'\0' is referred to as NULL character or NULL terminator It is the character equivalent of integer 0(zero) as it refers to nothing In C language it is generally used to mark an end of a string.

Why a char array must end with a null character?

If your char array represents a string then if you omit the null terminator every function working with C strings will not return the correct value or will behave differently than expected.

What is the type of '\ 0 in C++?

The \0 is treated as NULL Character. It is used to mark the end of the string in C. In C, string is a pointer pointing to array of characters with \0 at the end.

Why does the \0 character Mark the end of an array?

The \0 character does not mark the "end of the array". The \0 character marks the end of the string stored in a char array, if (and only if) that char array is intended to store a string. A char array is just a char array.

Is it necessary to use \0 in a char array?

So, the answer to the question about \0 being "necessary" depends on what you are storing in your char array. If you are storing a string, then you will have to terminate it with a \0. If you are storing something that is not a string, then \0 has no special meaning at all.

Can a character array end with a null character?

is a perfectly valid character array which is NOT null terminated and therefore, cannot be printed as a string. The null termination is only a trick used in C to allow flexible usage of character arrays for storing variable length strings. Character arrays need not end with a null character.

What is a char array in C?

A char array is just a char array. It stores independent integer values ( char is just a small integer type). A char array does not have to end in \0. \0 has no special meaning in a char array.


4 Answers

The \0 character does not mark the "end of the array". The \0 character marks the end of the string stored in a char array, if (and only if) that char array is intended to store a string.

A char array is just a char array. It stores independent integer values (char is just a small integer type). A char array does not have to end in \0. \0 has no special meaning in a char array. It is just a zero value.

But sometimes char arrays are used to store strings. A string is a sequence of characters terminated by \0. So, if you want to use your char array as a string you have to terminate your string with a \0.

So, the answer to the question about \0 being "necessary" depends on what you are storing in your char array. If you are storing a string, then you will have to terminate it with a \0. If you are storing something that is not a string, then \0 has no special meaning at all.

like image 92
AnT Avatar answered Oct 02 '22 15:10

AnT


'\0' is not required if you are using it as character array. But if you use character array as string, you need to put '\0'. There is no separate string type in C.

There are multiple ways to declare character array.

Ex:

char str1[]    = "my string";
char str2[64]  = "my string";
char str3[]    = {'m', 'y', ' ', 's', 't', 'r', 'i', 'n', 'g', '\0'};
char str4[64]  = {'m', 'y', ' ', 's', 't', 'r', 'i', 'n', 'g', '\0'};

All these arrays have the same string "my string". In str1 and str2 '\0' character is added automatically, but in other two, you need to explicitly add.

like image 28
MayurK Avatar answered Oct 02 '22 17:10

MayurK


When/Why is '\0' necessary to mark end of an (char) array?

The terminating zero is necessary if a character array contains a string. This allows to find the point where a string ends.

As for your example that as I think looks the following way

char line[100] = "hello\n";

then for starters the string literal has 7 characters. It is a string and includes the terminating zero. This string literal has type char[7]. You can imagine it like

char no_name[] = { 'h', 'e', 'l', 'l', 'o', '\n', '\0' };

When a string literal is used to initialize a character array then all its characters are used as initializers. So relative to the example the seven characters of the string literal are used to initialize first 7 elements of the array. All other elements of the array that were not initialized by the characters of the string literal will be initialized implicitly by zeroes.

If you want to determine how long is the string stored in a character array you can use the standard C function strlen declared in the header <string.h>. It returns the number of character in an array before the terminating zero.

Consider the following example

#include <stdio.h>
#include <string.h>

int main(void) 
{
    char line[100] = "hello\n";

    printf( "The size of the array is %zu"
            "\nand the length of the stored string \n%s is %zu\n",
            sizeof( line ), line, strlen( line ) );

    return 0;
}

Its output is

The size of the array is 100
and the length of the stored string 
hello
 is 6

In C you may use a string literal to initialize a character array excluding the terminating zero of the string literal. For example

char line[6] = "hello\n";

In this case you may not say that the array contains a string because the sequence of symbols stored in the array does not have the terminating zero.

like image 35
Vlad from Moscow Avatar answered Oct 02 '22 15:10

Vlad from Moscow


You need the null character to mark the end of the string. C does not store any internal information about the length of the character array or the length of a string, and so the null character/byte \0 marks where it ends.

This is only required for strings, however – you can have any ordinary array of characters that does not represent a string.

For example, try this piece of code:

#include <stdio.h>

int main(void) {
    char string[1];
    string[0] = 'a';
    printf("%s", string);
}

Note that the character array is completely filled with data. Thus, there is no null byte to mark the end. Now, printf will keep printing until it hits a null byte – this will be somewhere past the end of the array, so you will print out a lot of junk in addition to just "a".

Now, try this:

#include <stdio.h>

int main(void) {
    char string[2];
    string[0] = 'a';
    string[1] = '\0';
    printf("%s", string);
}

It will only print "a", because the end of the string is explicitly marked.

like image 44
Rushy Panchal Avatar answered Oct 02 '22 17:10

Rushy Panchal