Updated a sentence to be more meaningful. (#25036)

pull/23892/head^2
apurv22 2018-12-15 12:21:03 +05:30 committed by Manish Giri
parent 1bb957cc55
commit 1a3ae2106c
1 changed files with 1 additions and 1 deletions

View File

@ -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. eg. reading from the user, or printing out values.
## Arrays in C ## 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: Let's look at some code:
```C ```C