#include #include using namespace std; struct Point { int x; int y; }; void placer(Point *p, int x, int y) { p->x=x; p->y=y; } void affiche(Point p) { cout << "valeur de x"<< p.x<< endl; cout << "valeur de y"<