tmp
/
pip-install-ghxuqwgs
/numpy_78e94bf2b6094bf9a1f3d92042f9bf46
/numpy
/distutils
/tests
/swig_ext
/src
/zoo.cc
Zoo::Zoo() | |
{ | |
n = 0; | |
} | |
void Zoo::shut_up(char *animal) | |
{ | |
if (n < 10) { | |
strcpy(animals[n], animal); | |
n++; | |
} | |
} | |
void Zoo::display() | |
{ | |
int i; | |
for(i = 0; i < n; i++) | |
printf("%s\n", animals[i]); | |
} | |