From ff9380325413924cc4daa6c9f65f3f153229ddc1 Mon Sep 17 00:00:00 2001 From: Ritaban Datta <34961676+Reetoo@users.noreply.github.com> Date: Thu, 27 Dec 2018 00:05:45 +0530 Subject: [PATCH] Updated review in index.md (#32503) Added a point in Review --- guide/english/c/arrays-and-strings/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/guide/english/c/arrays-and-strings/index.md b/guide/english/c/arrays-and-strings/index.md index 4f29dcf99b..17ea54f028 100644 --- a/guide/english/c/arrays-and-strings/index.md +++ b/guide/english/c/arrays-and-strings/index.md @@ -274,5 +274,6 @@ Desc - United States * Arrays are collections of variables. * Arrays can only store same data types. An integer array will not be able to store characters in it. * Arrays have separate positions that can be declared with brackets, and accessed with square brackets. +* Array indexing begins with 0 i.e. first element is stored in array[0] and not array[1]. * Strings are arrays too, but we can treat them a little differently: they can be declared using double quotes, and printed using %s. * Strings have their own library, `string.h`, which has some handy functions to use.