mirror of
https://github.com/MariaDB/server.git
synced 2025-11-30 05:23:50 +03:00
10 lines
178 B
C
10 lines
178 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
int main (int argc, char *argv[]) {
|
|
int i;
|
|
for (i=0; i<1000; i++) {
|
|
printf("%d\t%d\n", random(), random());
|
|
}
|
|
return 0;
|
|
}
|