From 720931c798917f2cd297ed1f6d53bd5a62152585 Mon Sep 17 00:00:00 2001 From: Akshay Avinash Date: Tue, 23 Oct 2018 00:00:41 +0530 Subject: [PATCH] Definition change (#24081) --- guide/english/c/arrays-and-strings/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/c/arrays-and-strings/index.md b/guide/english/c/arrays-and-strings/index.md index 132ada5a5e..fbfb3d4541 100644 --- a/guide/english/c/arrays-and-strings/index.md +++ b/guide/english/c/arrays-and-strings/index.md @@ -2,7 +2,7 @@ title: Arrays and Strings --- # Arrays in C -Arrays allow for a set of variables to be grouped together as one variable. This is useful in its own right, but also because strings fall into this category. Strings, which are how we represent words and sentences in computer languages, are just collections of character variables. Therefore, we represent strings using arrays in C. +Arrays allow for a set of variables of the same type to be grouped together as one variable. This is useful in its own right, but also because strings fall into this category. Strings, which are how we represent words and sentences in computer languages, are just collections of character variables. Therefore, we represent strings using arrays in C. ## Making an Array A normal integer variable would be declared like so: