Assume there is a variable , h already assigned a positive integer value. Write the code necessary to assign its square to the variable g . For example, if h had the value 8 then g would get the value 64

Assume there is a variable , h already assigned a positive integer value. Write the code necessary to assign its square to the variable g . For example, if h had the value 8 then g would get the value 64



Answer: g= h**2


Learn More :