Formatting changes to the cheat-sheet

This commit is contained in:
Audun Wilhelmsen 2014-05-04 12:27:22 -07:00
parent 319174259d
commit a89927ef02
1 changed files with 2 additions and 2 deletions

View File

@ -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>