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