answersLogoWhite

0

Variables can maintain the same value throughout a program, or they can change values several times, depending on your needs. when you put a variable in a program, the computer recognises the variable and you can change it's value throughout without an error. Note: You can write programs without variables, but their functionality will be quite restricted, like this:

int main (void) { puts ("hello, world"); return 0; }

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What does the variable paltnew represent?

Whatever a programmer wants it to represent.


What are identifying variables?

the variable which can be identified by the programmer are called identified varibles


How do you make a 99 dodge cummins 3500 blow out black smoke?

You will need to buy a programmer for the computer.You will need to buy a programmer for the computer.


Do you need to be an excellent programmer to be an engineer?

No.


How do you burn the software on a 8051 microcontroller?

You will need a 8051 device programmer that connect to a PC with software to drive the programmer


Do you need to go to college for a computer programmer?

yes


Do you need to go to college to become a computer programmer?

no


How do you make a game for the moshi fun park on moshi monsters?

You would need to be someone who is a computer programmer or a game programmer.


How can you make your 2001 Chrysler 300m pass your governor mph?

You will need to reprogram the computer with an upgrade programmer.You will need to reprogram the computer with an upgrade programmer.


Do I need special education to get in to the tax software business?

If you are creating basic software the only thing you would need to know is how to program. If you are not a programmer, but are a tax specialist you just need to find a programmer to help you.


How can you make a evil hacking machine like the one from the anime tottaly spys?

First you need a computer, then you need a supergenius programmer, pay the programmer alot of money to build you one.


What types of variables are useful to programmer?

All variable types in a given computer language are useful to a programmer, otherwise they would not be included in the language. However, a specific program may not need to use all types to solve a given problem.In general, there are two distinct categories of variable types: primitive types and derived types.A primitive variable type is one whose definition is stated by the program language itself. Common primitive variable types are Integers, Characters, Floating Point numbers, and Arrays. The meaning of these types is fixed, and cannot change. Most languages seldom have more than a half-dozen primitive variable types.A derived variable type is one which is created by combining two or more primitive types together. It is possible to create a huge variety of different derived variable types. Items such as HashMaps, Strings, and Linked Lists are common derived variable types.