answersLogoWhite

0

simple and subscripter variable

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

What does it mean in math if there is subscript without a variable being multiplied by a variable with subscript?

What_does_it_mean_in_math_if_there_is_subscript_without_a_variable_being_multiplied_by_a_variable_with_subscript


What is the small number below a variable called?

A subscript.


If structure is arraythen an individual array element can be accessed by writing a variable?

A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.A structure is not an array. Individual array elements are accessed through a number, called a "subscript". This subscript can be a constant, or a variable, or any expression that can be evaluated to give an integer.


What is array What is difference between array and simple variable?

An array stores several values - for example, several numbers - using a single variable name. The programmer can access the individual values with a subscript, for example, myArray[0], myArray[5]. The subscript can also be a variable, for example, myArray[i], making it easy to write a loop that processes all the elements of an array, or some of them, one after another.


How array differ from ordinary variable?

ordanry variable store one value at a time. arrays are used for storing more than one value at a time in a single variable name ordanry variable doesnt have subscript. array must have subscript syntax for ord. variable Datatype v1,v2...... syntax for array variable Datatype v1[n1],v2[n2].....


How do you enter a subscript in ti-84?

To enter a subscript on a TI-84 calculator, first access the alpha mode by pressing the "Alpha" key. Then, press the "Y=" key to access the Y= editor, where you can input your equation. For the subscript, use the "X,T,θ,n" key, and then select the appropriate variable or use the "2nd" key followed by the "0" key to bring up the catalog and find the subscript option. Finally, type your desired subscript value.


What is the independent variable in a pulley?

The independent variable is the simple machine used and the thing your sliding it on.


How do you solve autoit error subscript used with non array variable?

A autoit error subscript means that a folder or subfolder cannot be found or registered. In order to fix this you either need to find a professional or edited the script to make sense so that the folder can be found.


How do you solve autoit error subscript used with non-array variable?

A autoit error subscript means that a folder or subfolder cannot be found or registered. In order to fix this you either need to find a professional or edited the script to make sense so that the folder can be found.


How is a box and whisker plot useful?

It is a very simple way to create a visual summary of the central location and spread of a variable. It is a very simple way to create a visual summary of the central location and spread of a variable. It is a very simple way to create a visual summary of the central location and spread of a variable. It is a very simple way to create a visual summary of the central location and spread of a variable.


What is the difference between subscript and subscripted variable in c plus plus?

Subscripts are used to identify the elements in an array, where the first element has subscript 0. Thus an array of n elements has subscripts in the range 0 to n-1. Each element may itself be an array, thus allowing multi-dimensional arrays. The subscript may be a constant or a variable. However, when declaring a static array, the subscript must be a constant. Constants include literal constants as well as named constants. A subscripted variable is simply an array or a datatype that can be divided into an array. For instance, a 32-bit int can be treated just as if it were an array of two 16-bit shorts or four 1-byte chars. Thus in the 32-bit int array, int i[10], i is a subscripted variable where i[0] is the first integer and i[9] is the last. If we then say char*c=&i, c would allow us to treat i as if it were a subscripted variable with 40 char elements (c[0] to c[39]).


How do you find greatest no using array in java?

Assume that the greatest number is the first element (subscript zero). Compare with each element in the array (starting with subscript one), and every time you find one that is greater than the greatest so far, set your variable "greatest" to this number.