Do you mean code like this:
struct Person
{
int height;
int weight;
int age;
};
int main()
{
Person p { .age = 18 };
}
which I picked up from here:
http://stackoverflow.com/questions/18731707/why-does-c11-not-support-designated-initializer-list-as-c99
If so, which IDE are you working in? This does not compile in C++ in VS2017 RC4.