From 68222346142ac08dca5d8ee5e00516e22ddea0ec Mon Sep 17 00:00:00 2001 From: dipashreepatil <44296051+dipashreepatil@users.noreply.github.com> Date: Fri, 28 Jun 2019 04:07:46 +0530 Subject: [PATCH] Update index.md (#32441) --- guide/english/c/data-types/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/guide/english/c/data-types/index.md b/guide/english/c/data-types/index.md index 56ae493cbf..719c83d9c4 100644 --- a/guide/english/c/data-types/index.md +++ b/guide/english/c/data-types/index.md @@ -10,7 +10,8 @@ There are two categories that we can break this into: integers, and floating-poi Floating point numbers are numbers with a decimal. Like integers, -321, 497, 19345, and -976812 are all valid, but now 4.5, 0.0004, -324.984, and other non-whole numbers are valid too. -C allows us to choose between several options with our data types because they are all stored in different ways on the computer. As a result, it is important to be aware of the abilities and limitations of each data type to choose the most appropriate one. +C allows us to choose between several different options with our data types because they are all stored in different ways on the computer. As a result, it is important to be aware of the abilities and limitations of each data type to choose the most appropriate one. +Since C is not interpreted language, it is not allowed to declare variables dynamically, so dynamic allocation of memory to variables is not possible. Variables should be declared at the beginning or before using it. Also, there should be provision by IDE to indicate the unused variable which is declared. ## Integer data types