Brainf*ck

Computing Dictionary

Brainfuck definition

language
An eight-instruction programming language created by Urban Müller. His goal was apparently to create a Turing-complete language with the smallest compiler ever, for the Amiga OS 2.0. He eventually reduced his compiler to under 200 bytes.
A Brainfuck program has a pointer that moves within an array of 30000 bytes, initially all set to zero. The pointer initially points to the beginning of this array. The language has eight commands, each of which is represented as a single character, and which can be expressed in terms of C as follows:
> ==> ++p; == --p; + ==> ++*p; - ==> --*p; . ==> putchar(*p); , ==> *p = getchar(); [ ==> while (*p) ] ==>
Brian Raiter's Brainfuck page (http://muppetlabs.com/~breadbox/bf/).
(2003-11-18)

The Free On-line Dictionary of Computing, © Denis Howe 2010 http://foldoc.org
Cite This Source

00:10

00:09

00:08

00:07

00:06

00:05

00:04

00:03

00:02

00:01

Brainf*ck is always a great word to know.
So is slumgullion. Does it mean:
an arrangement of five objects, as trees, in a square or rectangle, one at each corner and one in the middle.
a stew of meat, vegetables, potatoes, etc.
Dictionary.com, LLC. Copyright © 2012. All rights reserved.
  • Please Login or Sign Up to use the Recent Searches feature