#include #define DEPTH 10 #define DEPTH_STR(value) ("Depth: "#value"") int main(void) { std::cout << DEPTH_STR(DEPTH) << std::endl; return 0; }