Newer
Older
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
typedef struct Point Point;
struct Point
{
double x, y;
};
Point* line(double a, double b);
double double_random(double min, double max);
Point* cloud(Point* a_line);