summaryrefslogtreecommitdiffstats
path: root/src/s3select/example/generate_rand_csv.c
blob: 67d52adaa1b9e8e501ae4cc402b17c91f6e1e174 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <stdio.h>
#include <stdlib.h>


int main(int argc, char** argv)
{
  if (argc<3)
  {
    printf("%s <num-of-rows> <num-of-columns> \n", argv[0]);
    return -1;
  }

  srand(1234);
  int line_no=0;
  for(int i=0; i<atoi(argv[1]); i++)
  {
    printf("%d,", i);
    for(int y=0; y<atoi(argv[2]); y++)
    {
      printf("%d,", rand()%1000);
    }
    printf("\n");
  }




}