Arrays:
array एक standard structure है जो की data
को store करने के लिए use किया जाता है। individual variable केवल एक ही value
को store करता है जबकि array data के set को store करने के लिए
प्रयोग किया जाता है। इसमे single variable मे एक से ज्यादा
डाटा store किया जा सकता है। जैसे – a set of numbers, a series of dates etc.
Array is used to
hold a set of data of the same type.
Array variable मे value store करने और access करने के लिए array की index का
use किया जाता है।
Declaring Array:
simple variable की तरह ही array को भी
Dim, private या public
statement का use कर declare किया जाता है। इसे declare करते समय array के नाम के बाद parentheses मे array की last index की value दी
जाती है। जिसे subscript, index या size कहते हैं
Syntax: Dim <array name
> (subscript) As <Data Type>
Exp- Dim employee_name (20) As String
Dim salary (20) As Integer
No comments:
Post a Comment