You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

221 B

itoa

Instructions

Write a function that takes an int and converts it to a string. The function returns the result in a char array that you must allocate.

Expected function

func Itoa(n int) int {

}