[ create a new paste ] login | about

Link: http://codepad.org/WVPBNYkZ    [ raw code | output | fork ]

C++, pasted on Dec 12:
1
2
3
4
5
6
7
#include <string>
#include <cstdio>
int main()
{
    struct S { std::string const& s; } s = { std::string("string") };
    std::puts(s.s.c_str());
}


Output:
1
2
�������׹


Create a new paste based on this one


Comments: