What is the difference among the following two programs?
(a) #include
struct point { double x; double y; };
int main() {
struct point test;
test.x = .25; test.y = .75;
cout< return 0;
}
(b) #include
188 struct { double x; double y; } Point;
int main(void) {
Point test={.25,.75};
return 0;
}