mirror of https://github.com/01-edu/public.git
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.
20 lines
600 B
20 lines
600 B
5 years ago
|
## strlenprog
|
||
|
|
||
|
### Instructions
|
||
|
|
||
|
- Write a program that counts the characters of a `string` and that returns that value.
|
||
|
|
||
|
- If the program receives more than one `string` or no arguments must not return anything (see the `Expected output`).
|
||
|
|
||
|
### Expected output :
|
||
|
|
||
|
```console
|
||
|
student@ubuntu:~/piscine-go/strlenprog$ go build
|
||
|
student@ubuntu:~/piscine-go/strlenprog$ ./strlenprog "hello"
|
||
|
5
|
||
|
student@ubuntu:~/piscine-go/strlenprog$ ./strlenprog
|
||
|
student@ubuntu:~/piscine-go/strlenprog$
|
||
|
student@ubuntu:~/piscine-go/strlenprog$ ./strlenprog "hello" "how are you"
|
||
|
student@ubuntu:~/piscine-go/strlenprog$
|
||
|
```
|