fork download
#include <stdio.h>
#define pook printf("%d\n", __LINE__)

int main(void) {
    pook;
    pook;
    pook;
    return 0;
}
Success #stdin #stdout 0s 4304KB
stdin
Standard input is empty
stdout
5
6
7