- A project done during my Full-Stack Software Engineering studies at ALX Africa, a course offered by Holberton School.
- Files written in
vi
,vim
, andemacs
editors. - C files compiled using
gcc 9.4.0
. - C files wriiten according to the betty coding style. Checked using betty-style.pl and betty-doc.pl.
- Files tested on
Ubuntu 20.04
LTS usingbf
interpretersudo apt-get install bf
- Outpus are printed on
stdout
- Error messages printed on
stderr
File | Description/Question |
---|---|
1000-school.bf | Write a Brainf*ck script that prints School , followed by a new line. |
1001-add.bf | Add two digits given by the user. Read the two digits from stdin, add them, and print the result. The total of the two digits with be one digit-long (<10) |
1002-mul.bf | Multiply two digits given by the user. Read the two digits from stdin, multiply them, and print the result. The result of the multiplication will be one digit-long (<10) |
1003-mul.bf | Multiply two digits given by the user. |