answersLogoWhite

0


Best Answer

a procedure-level variable

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: A variable known only to the procedure in which it is declared is called what?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is automatic variable and what is its use?

It is a local variable known only to the function in which it is declared. Auto is the default storage class.


Value of automatic variable that is declared but not intialized?

The value of an automatic variable that is declared but not initialized is indeterminate.Some debug implementations will preset uninitialized variables to a known state, such as 0xcccccccc, or my favorite, 0xcacacaca, but that is just a hint that you are doing something very, very wrong if you ever encounter such a value.


What is the scope of any variable?

The Scope of a variable defines the areas of a program where this variable would be visible and can be used. For ex: a. Method variables - are visible only inside the method where they are declared and hence their scope is only the method b. Class variables - are visible inside the class and can be used by any method inside the class and hence their scope is the whole class.


Can you use extern and static together?

Storage classes are used to indicate duration and scope of a variable or identifier. Duration indicates the life span of a variable. Scope indicates the visibility of the variable. The static storage class is used to declare an identifier that is a local variable either to a function or a file and that exists and retains its value after control passes from where it was declared. This storage class has a duration that is permanent. A variable declared of this class retains its value from one call of the function to the next. The scope is local. A variable is known only by the function it is declared within or if declared globally in a file, it is known or seen only by the functions within that file. This storage class guarantees that declaration of the variable also initializes the variable to zero or all bits off. The extern storage class is used to declare a global variable that will be known to the functions in a file and capable of being known to all functions in a program. This storage class has a duration that is permanent. Any variable of this class retains its value until changed by another assignment. The scope is global. A variable can be known or seen by all functions within a program.


A loop control variable that is incremented a specific number of times is known as?

A loop control variable is widly known as a "counter".

Related questions

What is automatic variable and what is its use?

It is a local variable known only to the function in which it is declared. Auto is the default storage class.


What is a mathematical procedure that predicts the dependent variable on the basis of knowledge known about independent variables?

regression analysis


Value of automatic variable that is declared but not intialized?

The value of an automatic variable that is declared but not initialized is indeterminate.Some debug implementations will preset uninitialized variables to a known state, such as 0xcccccccc, or my favorite, 0xcacacaca, but that is just a hint that you are doing something very, very wrong if you ever encounter such a value.


What is the scope of any variable?

The Scope of a variable defines the areas of a program where this variable would be visible and can be used. For ex: a. Method variables - are visible only inside the method where they are declared and hence their scope is only the method b. Class variables - are visible inside the class and can be used by any method inside the class and hence their scope is the whole class.


The part of an experiment that does not contain the variable is known as?

this group is called the control group. the one that changes is called the variable. as in, it can vary. :) hope this helps!


What are process parameters?

A process parameter refers to the current status of a procedure under control. It is also known as a process variable or process value.


In a scientific study the variable that is influenced by another variable is known as?

When a variable is directly influenced by another variable it is known as a dependent variable. Conversely, a variable that isn't directly affected by another variable is known as a independent variable.


A variable measured in an experiment?

The variable measured in an experiment is called the dependent variable" the outcome factor". In contrast, the independent variable is the experimental factor that is manipulated; the variable who effect is being studied.


What condition in an experiment does a biologist manipulate?

In an experiment, the condition manipulated by a biologist is known as the independent variable. The condition that changes based upon how the independent variable was manipulated is known as the dependent variable.


What is the procedure known as culpocentesis?

A related procedure called culpocentesis removes ascitic fluid from the very bottom of the abdominal cavity through the back of the vagina.


What is the anatomic procedure known as neurolysis?

Another anatomic procedure is neurolysis, also called a nerve block, which involves destroying a portion of a peripheral nerve.


How are the automatic variable also known as?

local variable