1 2 3 4 5 6 7 8 9 | #include <initializer_list> #include <iostream> #include <string> int main() { std::initializer_list<std::string> a{"hello", "stackoverflow"}; for(auto it = a.begin(); it != a.end() ; ++it) std::cout << *it << std::endl; } |
I2luY2x1ZGUgPGluaXRpYWxpemVyX2xpc3Q+CiNpbmNsdWRlIDxpb3N0cmVhbT4KI2luY2x1ZGUgPHN0cmluZz4KCmludCBtYWluKCkgewogIHN0ZDo6aW5pdGlhbGl6ZXJfbGlzdDxzdGQ6OnN0cmluZz4gYXsiaGVsbG8iLCAic3RhY2tvdmVyZmxvdyJ9OwogIGZvcihhdXRvIGl0ID0gYS5iZWdpbigpOyBpdCAhPSBhLmVuZCgpIDsgKytpdCkKICAgIHN0ZDo6Y291dCA8PCAqaXQgPDwgc3RkOjplbmRsOwp9
-
upload with new input
-
result: Success time: 0s memory: 2960 kB returned value: 0
hello stackoverflow


