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

Related questions

0 votes
asked Aug 19, 2022 in GoLang by john ganales
0 votes
0 votes
asked Apr 27, 2023 in GoLang by Robin
...