From Jason Turner

[dcl.init.string]

Diff to HTML by rtfpessoa

tmp/tmp2vf6d0ue/{from.md → to.md} RENAMED
@@ -1,14 +1,14 @@
1
  ### Character arrays <a id="dcl.init.string">[[dcl.init.string]]</a>
2
 
3
- A `char` array (whether plain `char`, `signed` `char`, or `unsigned`
4
- `char`), `char16_t` array, `char32_t` array, or `wchar_t` array can be
5
- initialized by a narrow character literal, `char16_t` string literal,
6
- `char32_t` string literal, or wide string literal, respectively, or by
7
- an appropriately-typed string literal enclosed in braces. Successive
8
- characters of the value of the string literal initialize the elements of
9
- the array.
10
 
11
  ``` cpp
12
  char msg[] = "Syntax error on line %s\n";
13
  ```
14
 
 
1
  ### Character arrays <a id="dcl.init.string">[[dcl.init.string]]</a>
2
 
3
+ An array of narrow character type ([[basic.fundamental]]), `char16_t`
4
+ array, `char32_t` array, or `wchar_t` array can be initialized by a
5
+ narrow string literal, `char16_t` string literal, `char32_t` string
6
+ literal, or wide string literal, respectively, or by an
7
+ appropriately-typed string literal enclosed in braces ([[lex.string]]).
8
+ Successive characters of the value of the string literal initialize the
9
+ elements of the array.
10
 
11
  ``` cpp
12
  char msg[] = "Syntax error on line %s\n";
13
  ```
14