how to initialize an struct object in c++

C++
// exemple avec la structure Coordonnees :
struct Coordonnees
{
  int x;
  int y;
}

int main()
{
  Coordonnees coords = {1,2};
}
Source

Also in C++: