Checkpoint 8.4.1.
Click on all incorrect statements.
Remember, this syntax can be used only in an initialization, not in an assignment statement.
int main() { Point blank = { 3.0, 4.0 }; Point hello; hello = { 3.0, 4.0 }; Point beep; Point p = hello; beep = (Point) {3.0, 4.0}; bool check = blank == beep; beep = {3.0, 4.0}; }