123456789101112131415
struct values { int first; int second; int third; }; values random_values() { values v; v.first = 4; v.second = 7; v.third = 11; return v; }
123456
#include <tuple> std::tuple<int, int, int> random_values() { return {4, 7, 11}; }