diff --git a/Nimrod-for-C-programmers.md b/Nimrod-for-C-programmers.md index d351b75..416e107 100644 --- a/Nimrod-for-C-programmers.md +++ b/Nimrod-for-C-programmers.md @@ -151,9 +151,9 @@ let z = 2
char* s = "Hello World."; char s0 = s[0]; // 'H' -char *t = s; // Pointer to s +char *t = s; // Ptr to s s[11] = '!'; -// s and t both "Hello World!" +// s, t == "Hello World!"