#include using namespace std; struct Point { int x, y; Point(int x, int y): x(x), y(y){} }; // const vector v = ??; // http://stackoverflow.com/a/4268956 int main() { string s1("first"); int x = int(42); string s2 = "hello"; int y = 42; return 0; }