/* 乱数を生成する */ #include <stdio.h> #include <stdlib.h> main() { int i; for( i = 1; i < 10; i++ ) { printf("%d\n", rand() ); } } /* end of rand.c */