diff --git a/Nimrod-for-C-programmers.md b/Nimrod-for-C-programmers.md index 70ee57e..74b417f 100644 --- a/Nimrod-for-C-programmers.md +++ b/Nimrod-for-C-programmers.md @@ -149,7 +149,7 @@ let z = 2
-char* s = "Hello World.";
+char s[] = "Hello World.";
 char s0 = s[0]; // 'H'
 char *t = s; // Ptr to s
 s[11] = '!';