Formatting changes to the cheat-sheet
This commit is contained in:
parent
319174259d
commit
a89927ef02
|
@ -151,9 +151,9 @@ let z = 2
|
||||||
<pre>
|
<pre>
|
||||||
char* s = "Hello World.";
|
char* s = "Hello World.";
|
||||||
char s0 = s[0]; // 'H'
|
char s0 = s[0]; // 'H'
|
||||||
char *t = s; // Pointer to s
|
char *t = s; // Ptr to s
|
||||||
s[11] = '!';
|
s[11] = '!';
|
||||||
// s and t both "Hello World!"
|
// s, t == "Hello World!"
|
||||||
</pre>
|
</pre>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
|
Loading…
Reference in New Issue