We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi,
I am trying to initialize the structure like below in c++(-cpp11)struct{int a;int b;}structType;
structType xyz{.a=5, .b=7};
However the above code is giving me error "expected an expression".If I use the -c99 option, the other c++ code give