| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 4 months |
| seen | Jan 26 at 23:42 | |
| stats | profile views | 0 |
int
main(int argc, char *argv[])
{
char P[30000], *L[32], *p = P, *s, **l = L;
bzero(p, sizeof(P));
for(s = argv[argc - 1]; *s; s++)
switch(*s){
case '>': p++; break;
case '<': p--; break;
case '+': ++*p; break;
case '-': --*p; break;
case '.': write(1, p, 1); break;
case ',': read(0, p, 1); break;
case '[': *l++ = s; break;
case ']': l--; if(*p)s = *l - 1; break;
}
return 0;
}
This user has not asked any questions
|
|
Stack Overflow | 779 rep | 49 |
|
|
Super User | 101 rep | |
|
|
Meta Stack Overflow | 101 rep | 1 |
|
|
TeX - LaTeX | 101 rep | |
|
|
Unix & Linux | 101 rep | 1 |
This user has no active bounties
1 Vote Cast
| all time | by type | ||||
|---|---|---|---|---|---|
| 1 | up | 0 | question | ||
| 0 | down | 1 | answer | ||