#include<stdio.h> int print() { static int i = 1; printf("%-4d",i); i ++; if(i > 1000) return 0; return print(); } int main() { print(); return 0; }