Updated review in index.md (#32503)

Added a point in Review
This commit is contained in:
Ritaban Datta
2018-12-27 00:05:45 +05:30
committed by Christopher McCormack
parent 56199a5511
commit ff93803254

View File

@ -274,5 +274,6 @@ Desc - United States
* Arrays are collections of variables. * 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 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. * 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 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. * Strings have their own library, `string.h`, which has some handy functions to use.