Search: in
Brainfuck
Brainfuck in Dictionary Dictionary
  Tutorials     Encyclopedia     Videos     Books     Software     DVDs  
       
Dictionary results for: Brainfuck

Brainfuck


Brainfuck

Brainfuck




Source: The Free On-line Dictionary of Computing (26 July 2010)

	Brainfuck

    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)

	




Search Dictionary :



Search   in  
Search for Brainfuck in Tutorials
Search for Brainfuck in Encyclopedia
Search for Brainfuck in Videos
Search for Brainfuck in Books
Search for Brainfuck in Software
Search for Brainfuck in DVDs
Search for Brainfuck in Store





Powered by dict.org
Advertisement




Brainfuck in Dictionary
Brainfuck top Brainfuck

Home - Add TutorGig to Your Site - Disclaimer

©2011-2013 TutorGig.com. All Rights Reserved. Privacy Statement