about summary refs log tree commit diff stats
path: root/max.c
blob: ef5b331e24d75b6c61ce9a27787ddbdfd9ed091c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include <time.h>
int main() {
    char i = 0;
    while (1) {
        printf("%d\n", i);
        i++;
        sleep(1);
    }
    return 0;
}