RosettaCodeData/Task/Special-characters/C++/special-characters-6.cpp

6 lines
124 B
C++
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
#define STR(x) #x
int main()
{
std::cout << STR(Hello world) << std::endl; // STR(Hello world) expands to "Hello world"
}