Below you will see multiple declarations for the medals map; select all the declarations that don't have any syntax errors.
a)
medals = make(map[string]int)
b)
medals := make(map[string]int)
c)
var medals map[string]int
medals = make(map[string]int)
d)
var medals := make(map[string]int)