Which of the following is correct about structures in Go?
All of the above
Structure is another user defined data type available in Go programming, which allows you to combine data items of different kinds.
Structures are used to represent a record
To define a structure, you must use type and struct statements.