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.

14 lines
221 B

6 years ago
## 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
```go
func Itoa(n int) int {
}
```