Making the world a better place, one Evil Mad Scientist at a time.
Maintenance notice:
These forum archives are read-only, and will be removed shortly.
Please visit our forums at their new location, https://www.evilmadscientist.com/forums/.
Thanks. I was writing the code from my faulty memory. You are right. When I checked the code that I wrote that worked, it looked like this:
struct Point
{
int x;
int y;
};
Point s1 = {3,4};
Point s2 = {4,4};
Point s3 = {5,4};
Point s4 = {6,4};…