In Visual Basic Programming What Variable Is Declared If I Say " Dim I As Integer" ?
In visual basic programming what variable is declared if i say " dim i as integer" ?
The variable declared is : i
Dim is used to declare a variable and "as integer" makes the variable "i" capable of storing integer values only with no decimal.
Comments
Post a Comment