Answers for "c++ initialize a struct"

C++
6

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};
}
Posted by: Guest on March-28-2020
2

c++ initialize a struct

struct address {
    int street_no;
    char *street_name;
    char *city;
    char *prov;
    char *postal_code;
};

address temp_address = {
  0,  // street_no
  nullptr,  // street_name
  "Hamilton",  // city
  "Ontario",  // prov
  nullptr,  // postal_code
};
Posted by: Guest on December-09-2020

Browse Popular Code Answers by Language