If the "myName" variable is declared at global scope, which of the following statements will let you modify that global variable inside a function?

Select one:

a.
modify myName

b.
No special statement is needed to modify a global variable inside a function

c.
global myName

d.
immutable myName

……

c. global myName