File size: 113 Bytes
c011401
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10

class Zoo{
		int n;
		char animals[10][50];
public:
		Zoo();
		void shut_up(char *animal);
		void display();
};