I really tried not resorting to asking this but after days of searching here it goes.
I need to write a program that opens a file called "input.bin" and prints it in binary beginning to end on screen.
While it does that for each byte it adds 00000101 to each byte and prints it in "result.bin"
(for example 01001010
+00000101
=01001111
and 11111111
+00000101
=00000100)