Sunday, April 19, 2009

Arrays

20/04/2009 - Today we went through what arrays. egs
Dim string (3) As String which has 4 elements
strstring(0) = "first string"
strstring(1) = "2nd string"
strstring(2) = "3rd string"
strstring(3)= "4th string"

1 comment:

  1. Arrays are very useful. Don't forget to read my blog where you can find posts like this one on arrays:

    http://c4programming.blogspot.com/2009/04/arrays.html

    ReplyDelete