Code:
struct card {
       bool l;
};

bool pair(card[] cards) {
     
     return true;
}
here i get the error: expected primary-expression before ']' token

why is this?