#include <iostream>
using namespace std;


    const char* getMessage1() {
        static std::string myString = "SomeOutput";
        return myString.c_str();
    }

    int main() {
        printf("#1: %s \n", getMessage1());         // prints #1: SomeOutput
        return 0;
    }
