Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

golang loop through array

arr := []int{1, 2, 3, 4, 5}
//using range 
for index, ele := range arr { // you can escape index by _ keyword
	fmt.Println(index, ele)
}
 
PREVIOUS NEXT
Tagged: #golang #loop #array
ADD COMMENT
Topic
Name
2+3 =