int printf(char* format, ...); int main() { int i = 0; do { printf("%d ", i); i++; } while (i < 5); printf("\n"); return 0; }