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

Complete newfag here

Name: Anonymous 2011-01-13 4:09

Hai, I'm a newfag to C++ and to this board so excuse my giant amount of fail.
Why won't this figure out the smallest thing in the array?
http://codepad.org/vaHOX8mW

Name: Anonymous 2011-01-13 4:29

>>12
forgot to return r:

int smallest(int *in, int length) {
  int r = in[0], i;
  for (i = 1; i < length; i++)
    if (in[i] < r) r = in[i];
  return r;
}

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