datatype

06.04. Understanding Strings

Strings   A string is a collection of characters or we can call it an array of characters. A character is nothing but a single letter, alphabets, numerics, special symbols all these can be considered as a character in the C language. example: suppose a is a character, either it can be a capital letter …

06.04. Understanding Strings Read More »

02.06. Understanding datatypes

Datatype   We have seen that variables are like a container for constants, whereas ‘Data type’ is nothing but the type of data the variable contains. In C programming the type of data that can be stored in the variable needs to be declared when we define the variable in the code of the program. …

02.06. Understanding datatypes Read More »

03.03. Variable and Data Type

Variable and Data Type Variable is a space in memory where we can store data. It helps to access the data easily. Data Type A data type defines the size and type of information stored in a variable. Data types help in memory management. It helps to assign the memory depending upon the type of data …

03.03. Variable and Data Type Read More »