From 1a3ae2106cfc729e779447e51ac519de7c2ccdc0 Mon Sep 17 00:00:00 2001 From: apurv22 <36675879+apurv22@users.noreply.github.com> Date: Sat, 15 Dec 2018 12:21:03 +0530 Subject: [PATCH] Updated a sentence to be more meaningful. (#25036) --- guide/english/c/arrays/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/c/arrays/index.md b/guide/english/c/arrays/index.md index f2582135c39..44aa874cb88 100644 --- a/guide/english/c/arrays/index.md +++ b/guide/english/c/arrays/index.md @@ -23,7 +23,7 @@ So, this looks a bit tedious. Up until now every variable created had some speci eg. reading from the user, or printing out values. ## Arrays in C -Arrays are containers with a given size. They contain variables of the **same type**. This is called base type of the array. You can access a variable stored in the array with its *index*. +Arrays are containers with a given size. They can store values of the **same type**. This is called base type of the array. You can access a value stored in the array with its *index*. Let's look at some code: ```C