Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • 33
    with c++11 I you can make this example shorter using default values struct { int a=0; char b='a'; } s; Commented Jul 27, 2015 at 6:26
  • 1
    @TrevorBoydSmith: That's so ugly, variables scatters around. Commented Feb 20, 2021 at 7:45
  • 4
    Thanks for this. I just sat here maniacally laughing to myself over: for(struct { std::vector<float>::iterator it; size_t count; } v { vec.begin(), 1 }; v.it < vec.end(); ++v.it, ++v.count) { ... } Commented Feb 23, 2021 at 7:25