answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is the mean by variable definition and variable assignment?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is initial variable?

Variable initialization is the assignment of an initial value to a variable.


How you can modify an integer variable value in a function?

with an assignment: variable = value variable += value variable /= -3; ...


What is the process of assigning a value to a variable called?

That is called "assignment".That is called "assignment".That is called "assignment".That is called "assignment".


What is the optional in a variable declaration statement?

Optional is the assignment of the value of course.int number; //Variable Declarationint number=2; //Assignment Declaration


What is the definition of a variable?

operational definition of a manipulated variable


What is the definition of a manipulated variable?

operational definition of a manipulated variable


Varience methods by which you would split semi-variable costs in its fixed and variable elements?

assignment


What is the difference between declaring variable and initializing variables?

Actually, there is a third step, call definition. Declaration is a statement to the compiler of what type an identifier is, definition is the allocation of memory for that identifier, and initialization is the assignment of an initial value to that identifier. Usually, declaration and definition are done together, but you can also add initialization in that step if desired. int a; /* declaration and definition */ a = 1; /* initialization */ int a = 1; /* declaration, definition, and initialization */ For the case of seperate declaration and definition, consider the struct... struct _mystruct { int a; }; /*declaration */ struct _mystruct mystruct; /* definition */ struct _mystruct { int a; } mystruct; /*declaration and definition */ Note: To be more precise: struct _mystruct; /* struct declaration */ struct _mystruct { int a; }; /* struct definition */ typedef struct _mystruct MYTYPE; /* type definition */ extern struct _mystruct mystructvar; /* variable declaration */ struct _mystruct mystructvar; /* variable definition */ struct _mystruct mystructvar = {7} ; /* variable definition with initialization */ struct _mystruct { int a; } mystruct; /* struct definition and variable definition */ extern struct _mystruct { int a; } mystruct; /* struct definition and variable declaration */


How do you save a pointer variable into another variable?

Assignment. Eg: void *p1, *p2; p2= p1;


What is the definition operational definition in science?

describes how to measure a variable or define a term. right out of my science book


What is the difference between Declaration and Assignment?

Declaration is basically defining data type and length and assignment is to assign the value. Below is the declaration -- var a integer /* this means we are declaring a variable a as integer data type */ a= 5 /* this is assignment,we are assigning 5 to variable a */


What is the definition for a independant variable?

An independent variable is a factor that is changed by the controller of the experiment.