initialize struct as member init cpp code example
Example: how to initialize an struct object in c++
// exemple avec la structure Coordonnees :
struct Coordonnees
{
int x;
int y;
}
int main()
{
Coordonnees coords = {1,2};
}
// exemple avec la structure Coordonnees :
struct Coordonnees
{
int x;
int y;
}
int main()
{
Coordonnees coords = {1,2};
}