翻訳と辞書
Words near each other
・ bracket abstraction
・ braille
・ braille display
・ braille embosser
・ braille printer
・ brain aid prolog
・ brain dump
・ brain fart
・ brain-damaged
・ brain-dead
brainfuck
・ braino
・ branch
・ branch and hang
・ branch coverage testing
・ branch delay slot
・ branch on chip box full
・ branch prediction
・ branch target buffer
・ branch to fishkill


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

brainfuck : FOLDOC
Brainfuck
An eight-instruction programming language created by Urban Mller. 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)



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.