VK
Size: a a a
VK
VK
m
RS
#include <algorithm>
#include <iostream>
#include <string>
#include <vector>
struct Test
{
int m_int;
std::string m_string;
};
int main() {
Test a{
.m_int=42
, .m_string="Hello World"
};
return 0;
}
#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;
}
И
VK
#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;
}
VK
И
И
m
И
И
m
a
И
V
V
V
a
V