#include "bird.h" void FilterBirds(Bird birds[], int N){ for(int i = 0; i < N; i++){ if(i % 3 == 0) birds[i].hide() ; } }