Browse Source

itoa

content-update
Augusto 5 years ago committed by Frenchris
parent
commit
8d30c01285
  1. 14
      subjects/itoa.md

14
subjects/itoa.md

@ -0,0 +1,14 @@
## 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 {
}
```
Loading…
Cancel
Save