answersLogoWhite

0

Defining a variable syntax

User Avatar

Anonymous

15y ago
Updated: 8/18/2019

[storage-class] [const] [type modifiers] type name [= inital-value] ;

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is syntax in declaring a variable?

type your answer here


Defining the variable?

mathematicschoosing a variable to represent an unknown quantity


How you declare a variable in c language?

you have to give a statement in the following syntax datatype variable;


What is another name for defining a variable?

An unknown


What is the syntax of global variable in java?

There's no global variables in Java.


What is syntax in c plus plus for declaring a variable?

type variable {[optional array size]} {= optional initializer};


The correct syntax for setting the BOB variable to the contents of the JOE variable in the Bourne shell?

BOB=$JOE or BOB=${JOE}


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].....


Describe the differences between local and module-level variables?

local Variable A Local variable is a variable whose scope is limited to the Block of the Subroutine defining it. Private Sub Command1_Click Dim a as integer End Sub Module Level Variable A Module Level variable is a variable whose scope is limited to the Form Module defining it. Public Sub Command1_Click Dim a as integer End Sub Global Level Variable A Global Level variable is a variable whose scope can be limited to the entire project defining it. Private Sub Classjnitialize () Dim a As Integer End Sub


What do you mean by template in basic computer programmingwrite a general syntax for defining the template?

template is nothing but the design which have all the information


What two elements need to remembered when defining grammar?

When defining grammar, it is important to consider both syntax and semantics. Syntax refers to the structure and rules for constructing sentences, while semantics deals with the meaning of those sentences. Both elements are crucial for creating clear and effective communication.


Analyze the difference among local module-level and global variables and explain how ActiveX DLLs are created?

Local Variable A Local variable is a variable whose scope is limited to the Block of the Subroutine defining it. Private Sub Command1_Click Dim a as integer End Sub Module Level Variable A Module Level variable is a variable whose scope is limited to the Form Module defining it. Public Sub Command1_Click Dim a as integer End Sub Global Level Variable A Global Level variable is a variable whose scope can be limited to the entire project defining it. Private Sub Class_Initialize () Dim a As Integer End Sub