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 another name for a bash shell script that you might see?
How do I edit a .sh file?
What is mac default shell?
write a shell script to generate a alert ? like when ur birthday came then generate a alert ur birthday is today like that ?
What is shell and shell script?
Is it possible to substitute "ls" command in the place of "echo" command?
Why should we use shell scripts?
How will you copy a file from one machine to other?
Explain about "s" permission bit in a file?
Why is used in shell scripting?
What is shell scripting?
State the advantages of shell scripting?
What can scripts do?
What is in a script?
Explain about stdin, stdout and stderr?