Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,906 questions

51,838 answers

573 users

How to use two dimensional (2D) array in Go

2 Answers

0 votes
package main

import "fmt"

func main() {
    arr := [2][3]string{}

    arr[0][0] = "a"
    arr[0][1] = "b"
    arr[0][2] = "c"
    
    arr[1][0] = "d"
    arr[1][1] = "e"
    arr[1][2] = "f"

    fmt.Println(arr)
}

  
  
  
/*
run:
  
[[a b c] [d e f]]
  
*/

 



answered Aug 27, 2020 by avibootz
0 votes
package main
 
import "fmt"
 
func main() {
    arr := [2][3]string{}
 
    arr[0][0] = "a"
    arr[0][1] = "b"
    arr[0][2] = "c"
     
    arr[1][0] = "d"
    arr[1][1] = "e"
    arr[1][2] = "f"
 
    for i := range arr {
        fmt.Println(arr[i])
    }
    
    fmt.Println("\n")
    
    for i := range arr {
        for j := range arr[i] {
            fmt.Println(arr[i][j])
        }
    }
}
 
   
   
   
/*
run:
   
[a b c]
[d e f]


a
b
c
d
e
f
   
*/

 



answered Aug 27, 2020 by avibootz

Related questions

1 answer 174 views
2 answers 240 views
240 views asked Aug 27, 2020 by avibootz
1 answer 126 views
1 answer 141 views
1 answer 168 views
3 answers 209 views
1 answer 162 views
...