programmieren-3-c/v4.2/main.c

17 lines
253 B
C

#include <stdio.h>
#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;
}