Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1of 1

#define MAX_ARRAY_LENGTH 100

struct Complex
{
double a;
double b;
};
struct DiophantineEquation
{
int a;
int b;
int c;
};

You might also like