What is the difference between a variable and value?
Answer Posted / veveritoiulpofticios
Variables are storage for values. They are identified by a name.
Values are a pair of:
1) a representation (numbers stored in computer memory)
2) a meaning associated with that representation (also called a type).
Example (C programming language):
char c = 'A';
c is a variable (a location in computer memory, identified by the name c)
c stores the value 'A', which is:
the number 65, meaning the index of character A in the ASCII table.
| Is This Answer Correct ? | 28 Yes | 8 No |
Post New Answer View All Answers
What is the difference between break and continue commands?
Can shell script run on windows?
What is another name for a bash shell script that you might see?
c program the catches the ctrl-c(SIGINT) Signal for the first time and prints a output rather and exit on pressing Ctrl-C again
How do I run a .sh file on mac?
What are the different types of variables used in shell script?
What is shell terminal?
What does sh mean?
How to get the 3rd element/column from each line from a file?
How do I run a powershell script?
What is subshell?
Explain about debugging?
What is the purpose of scripting?
Please give me example of " at command , contrab command " how to use
Explain how you Automate your application using Shell scripting.