c/count.c

14 lines
180 B
C
Raw Normal View History

2023-01-20 02:03:45 +00:00
void increment(void) {
static unsigned int counter = 0;
counter++;
printf("%d", counter);
}
int main(void) {
for (int i=0; i<5; i++) {
increment();
}
return 0;
}