There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

JATtho ,

Lettme introduce you to ackermann’s function:


<span style="color:#323232;">int ack(int m, int n) {
</span><span style="color:#323232;">    if (m == 0) {
</span><span style="color:#323232;">        return n+1;
</span><span style="color:#323232;">    } else if((m > 0) && (n == 0)){
</span><span style="color:#323232;">        return ack(m-1, 1);
</span><span style="color:#323232;">    } else if((m > 0) && (n > 0)) {
</span><span style="color:#323232;">        return ack(m-1, ack(m, n-1));
</span><span style="color:#323232;">    }
</span><span style="color:#323232;">}
</span>

You won’t run out of stackoverflows any time soon.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • [email protected]
  • random
  • lifeLocal
  • goranko
  • All magazines