0 votes
in GoLang by
What will be the output of the following code?

package main  

import "fmt"  

 const (   

       i = 7  

       j   

       k   

 )  

func main() {  

 fmt.Println(i, j, k)  

}

1 Answer

0 votes
by
It would print 777
...