python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to optimize brainf*ck instructions
I'm trying to write an optimisation feature for my brainf*ck interpreter.
It basically combines same instructions into 1 instruction.
I wrote this function but It doesn't work properly:
pub fn optimi...
d3r1n
Votes: 0
Answers: 1
Does the new location have to be zero for the loop to end in brainf*uck
I was wondering abt bf loops then it just got much more complicated.
when you open the loop([) at the pointer location 0, then go forward(>) in the loop([>). Does the new location have to be zer...
AllinOne-Gaming
Votes: 0
Answers: 1
how to set an array with the size of n to a specific number in brainfuck
I want to set an array of n elements to a predefined value (which isn't copying from a cell but setting a value from the code itself). How could I do that? without changing other cells as I went throu...
silver takana
Votes: 0
Answers: 1
Why does every brainf*ck interpreter (except the web ones) show these characters? (♀♂)
So I tried doing my own Brainf*ck interpreter in C++, and everything was going fine until I tried this program:
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++[.-]
It just goes to...
user14676520
Votes: 0
Answers: 1