#include "fa2.h" #include <assert.h> ... float &float_array::operator[](size_t i) const { assert(i < len); return array[i]; } /* End of File */