Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Okay, I bought some weed

Name: 1282929983/1013 2013-03-09 3:20

And shit this place and programming do suck less!

Name: Anonymous 2013-03-09 4:05

[code]
//alternate (functionally)-recursive fibs implementations ?

int fibs(int target, int a, int b){
  if(target==1) return a+b;
  int ret = 0;
  ret = fibs(target--, b, a+b);
  return ret;
  }

void main(void){

  int x = fibs(100,0,1);
  printf("term 100 = %i", x);

  }

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List