[c++] 특정 문자열 쓰기

#include #include

int main() { std::string myString = “Hello, world!”; std::cout « myString « std::endl; return 0; } ```