(Strings): Fix char array declaration syntax.

This commit is contained in:
Richard Stallman 2022-09-07 17:31:45 -04:00
parent c888ea34dd
commit a51a1f74c9
1 changed files with 2 additions and 2 deletions

4
c.texi
View File

@ -6942,7 +6942,7 @@ To declare a place to store a non-constant string, declare an array of
for the terminating null. For instance,
@example
char text = @{ 'H', 'e', 'l', 'l', 'o', 0 @};
char text[] = @{ 'H', 'e', 'l', 'l', 'o', 0 @};
@end example
@noindent
@ -6951,7 +6951,7 @@ and the terminating null character. An equivalent way to get the same
result is this,
@example
char text = "Hello";
char text[] = "Hello";
@end example
@noindent