Code With Harry
Code With Harry
Code With Harry
Description
Code
In this tutorial we’ll discuss about Variables and Data Types:
Variable -:
· A variable is a name or an identifier which is given to any storage
area or memory location.
Actually, Variable doesn’t hold a value but it’s the name given to any
memory address in RAM. It means variable is the way to access that
memory address of Ram so that we can store or manipulate data in
that memory address or memory block.
Declaring a variable -:
Typeofvariable name;
Initializing a Variable -:
Data Types -:
· Data type is the type of data that variable holds.
· Derived Data Type: These are the data types which are made
with the help of Basic Data Types.
· Void Data Type : It is the data type which denotes the value
empty i.e. Void data type means “no data type”.
← Previous Next →
Back to top