answersLogoWhite

0

From the face value of the question, they are called message chain, or train rack (if one of them is null!?)

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Which is the default variable storage class type in a function?

Everything is an object, and "typed" based on assignation. Your variable will be given a class when you declare it to be something, and the class will depend on what value you give the variable. It is always an object though, and its class may change if you change its value.


How do you use define in C?

Just type declare then the variable that you desire to assigned a certain constant value on it. Just type declare then the variable that you desire to assigned a certain constant value on it.


What is variable declarations?

A variable declaration is a math or programming term. A variable is an unnamed component. In the problem the wording will declare what the value of the variable is.


How do you declare global variable in dot net?

I use the session .... Session["var"] = some value or object. Then you can call that variable any time for the users Session. EDIT: Make a public static variable outside of a method and just in the Class.


How do you declare a variable with initial value of 20.1234?

float myVariable = 20.1234;


How do you declare a variable holding real numbers in pseudocode?

In pseudocode, you can declare a variable holding real numbers by specifying the variable name followed by its type. For example, you might write REAL numberVariable; or DECLARE numberVariable AS REAL;. This indicates that numberVariable will store a real number value. You can then assign a value to it using an assignment statement, such as numberVariable = 3.14;.


How do you declare variables and constants.explain with example?

Depends on the programming language you are using. I will give two simple examples. In Command Prompt and when creating a batch file, you declare a variable by entering the "set" command. You can use different switches to change the type of variable you are declaring. /p makes the variable able to accept user input. /a makes the variable a numerical expression. In Python, you declare a variable just by stating the name of the variable and its value. x = value.


Declare a numerical variable precise and initialize it to the value 1.09388641?

double precise = 1.09388641;


What is variable definition in c language?

variable definition means to declare the variable with its value. for example:- int i=10; this statement is a combination of declaration of integer i and assign its value to it,so it is a definition statement Note: assigning a value is not essential.


Which qualifier is used to declare read-only variable in java?

A variable declared as final can't be modified, once a value is assigned.


What is the default value of register storage class?

Register storage class is a compiler hint that the variable will be often used, and that it should generate code, if it can, to keep the variable's value in a register.


Can you declare printf for integer variable?

printf is declared in stdio.hFormat specifier for an integer value is %d.