#include #include "qinit.h" #define NUM_SQUARES 100 int main(void) { int squares[NUM_SQUARES]; qinit(&squares[0], NUM_SQUARES); for (int i = 0; i < NUM_SQUARES; i++) { printf("%d\n", squares[i]); } return 0; }