answersLogoWhite

0

Variable is of any Data Type and Data Type can be defined as a type of value that a Variable will hold.............means which type of value you want to store, eg: fractional value (3.5454), whole value (3,76,3,67), character value (a,v,c,f,b,z) etc..........

So The Use the Variable is to store a value of any kind (some mentioned above)

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is an identifier. what are the hearing rods for identifier 'c' language?

An identifier is the names given for labels, functions and variables in the c language.


What is meant by pointers in c language?

Variables (or constants) that contain addresses.


Why you are use to c language?

I do use am a programmer, because C-language.


When you declare an variable in c language where it will be stored in the computer?

Nowhere, variables exist only during the program run. If you want permanent storage, use files.


What is a constant variables in c language?

It are a variable you add modifer 'const' to. It means these variable mustn't be modified.


What is the use of loader in c language?

There is no part called 'loader' in C language.


What are letters such as n b c that you use in math are called?

variables


How many structure variables of a given type can you use in a C program?

You can use unlimited number of variables for a structure and you can also declare array of structures.


Why we use underscore in cpp language?

Underscores are often used in C++ to separate words in variable names for readability, known as snake_case. It's a common naming convention in C++ and many other programming languages. Additionally, underscores are used to indicate private member variables in classes to differentiate them from public variables.


Do you have pointer concept in c plus plus language?

Yes. All string variables are pointers as are other arrays.


How do you write a programme in c language using arrays to copy diagonal elements of a 2-d array into a 1-d array?

TO use a c language first step is to know about the c language and the steps to use the c progrmming language with the help of any elders or with the teachers. TO use the arrays you have to get th eknowledge of "c" language


What is the meaning of identifiers in c language?

The NAMES that identify or represent the variables, constants, data types, functions and labels in C language.. They are mere(only) NAMES, that help in IDENTIFYING variables, data types, constants, functions and labels to differentiate them from each other.. A good identifier must be descriptive but short..