Mode:
Duration:
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>
#include <string>
struct User {
std::string name;
int age;
};
int main() {
User u{"Alice", 22};
std::cout << u.name << " - " << u.age << std::endl;
return 0;
}Coding works best on desktop or with an external keyboard.