How would you use the DIM statement to declare ... - SS3 ICT Basic Programing III Question
How would you use the DIM statement to declare an array in BASIC? Provide an example
The DIM statement in BASIC is used to declare arrays by specifying the array's name and dimensions (size). Here's an example of declaring an array of 10 integers:
basic Copy code
DIM numbers(10)
This statement declares an array named numbers with 11 elements (0 to 10) to store integer values.
Please share this, thanks:
#SS3 #SS3
Add your answer
No responses