V
Size: a a a
V
V
V
e
V
V
RS
VK
VK
VK
RS
VK
RS
RS
VK
VK
VK
RS
BV
#include <algorithm>
#include <iostream>
#include <string>
#include <vector>
struct Test
{
int m_int;
std::string m_string;
};
int main() {
Test a{
.m_string="Hello World",
.m_int=42
};
return 0;
}
M