In C/C++, when a character array is initialized with a double quoted string and array size is not specified, compiler automatically allocates one extra space for string terminator ‘\0’. For example, following program prints 6 as output.
#include<stdio.h>
int main()
{
char arr[] = "geeks" ;
printf ( "%lu" , sizeof (arr));
return 0;
}
|
Output :
6
If array size is specified as 5 in the above program then the program works without any warning/error and prints 5 in C, but causes compilation error in C++.
#include<stdio.h>
int main()
{
char arr[5] = "geeks" ;
printf ( "%lu" , sizeof (arr));
return 0;
}
|
Output :
5
When character array is initialized with comma separated list of characters and array size is not specified, compiler doesn’t create extra space for string terminator ‘\0’. For example, following program prints 5.
#include<stdio.h>
int main()
{
char arr[]= { 'g' , 'e' , 'e' , 'k' , 's' };
printf ( "%lu" , sizeof (arr));
return 0;
}
|
Output :
5
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.