answersLogoWhite

0


Best Answer

You cannot create a variable named "while", since that is a reserved word.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How can you create your own variable named while and make it hold a function value?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a function of a variable?

A variable is a named memory address in which a value may be stored and mutated.


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

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


What is the result of substituting a value for a variable in a function?

To find the value of the other variable


What is the output variable of a function?

It is a value in the co-domain [range] of the function.


How is solving for a specified variable in a formula different to finding a solution for an equation or inequality?

With a formula, you know the variable's value, and you have to calculate the value of the function of it. With an equation, you know the function's value, and you have to calculate the value of the variable.


How is solving for a specified variable in a formula similar to finding a solution for an equation or inequality?

With a formula, you know the variable's value, and you have to calculate the value of the function of it. With an equation, you know the function's value, and you have to calculate the value of the variable.


A function is a rule that assigns each value of the variable to exactly one value of the dependent variable?

I found two answers for this question. A function is a rule that assigns to each value of one variable (called the independent variable) exactly one value of another variable (called the dependent variable.) A function is a rule that assigns to each input value a unique output value.


In mathematics what is a limiting value?

If the value of a function cannot be determined for any value of the independent variable, then, the value the function seems to be approaching would be its limiting value for that particular value of the independent variable.


When can we say that a function is a relation?

When it doesn't fulfill the requirements of a function. A function must have EXACTLY ONE value of one of the variables (the "dependent variable") for every value of the other variable or variables (the "independent variable").


When can we say that a relation is a function?

When it doesn't fulfill the requirements of a function. A function must have EXACTLY ONE value of one of the variables (the "dependent variable") for every value of the other variable or variables (the "independent variable").


In the function equals what are the arguments?

In C, = is the assignment operator. On the left is the variable you want to assign a value to, on the right is the value you want to assign.Code example:int main(void) { int a; /* create a variable called 'a' */ int b = 0; /* create a variable called 'b' and give it a value of '0' */ a = 1; /* 'a' now contains the value '1' */ b = a; /* 'b' now contains the value '1' */ return 0; }


What is the main variable?

Variables are names for which the value may be altered. That is, the value of a name is variable. For example: int x; // Declares a variable named x. int y = 0; // Declares and initialises a variable named y. x = 5; // Changes the value of the variable named x. y = x; // Changes the value of the variable named y. By contrast, constants are names for which the value does not change: const int z = 10; // Declares a constant named z, which will always have the value 10.