[ create a new paste ] login | about

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

C++, pasted on Jul 19:
1
2
3
4
5
6
7
8
9
#include <string>
#include <iostream>
using namespace std;
int main()
{
   std::string string;
   string = "hello\n";
   std::cout << string;
}


Output:
1
hello


Create a new paste based on this one


Comments: