void pushGroup(int a[], int size); // this will push a group of elements stored in the array a with size size into the array stack.
NOTE1: don’t call any function; you need to implement everything from scratch.
NOTE2: this operation either completely succeeds or completely fails. In other words, you either push all the elements or none of them.