#include #include #include main() { srand((unsigned) time(NULL)); int i, ary[10]; for(i=0; i<=9; i++) ary[i] = rand() % 20 + 1; for(i=0; i<=9; i++) printf("%3d\n", ary[i]); return(0); }