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.
532 B
532 B
printstrprog
Instructions
- Write a program that prints one by one the characters of a
string
passed as an argument of the program.
Expected output :
student@ubuntu:~/[[ROOT]]/printstrprog$ go build
student@ubuntu:~/[[ROOT]]/printstrprog$ ./printstrprog "Hello World!" | cat -e
Hello World!$
student@ubuntu:~/[[ROOT]]/printstrprog$ ./printstrprog
student@ubuntu:~/[[ROOT]]/printstrprog$
student@ubuntu:~/[[ROOT]]/printstrprog$ ./printstrprog "Hello" "World"
student@ubuntu:~/[[ROOT]]/printstrprog$