← Back to archive

Stdle #43 · strings · 2026-07-19

What does this C++ snippet output?

A past puzzle — fully playable. 4 attempts, hints on wrong guesses.

#include <iostream>
#include <string>
int main() {
std::string s = "abc";
std::string t = s + "!" + std::to_string(42);
std::cout << t << "\n";
}
Strings
4 attempts left

Answer & explanation