Skip to content

Latest commit

 

History

History

bf

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Technologies

  • Files written in vi, vim, and emacs 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 using bf interpreter sudo apt-get install bf
  • Outpus are printed on stdout
  • Error messages printed on stderr

Files

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.