[ create a new paste ] login | about

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

C++, pasted on Aug 24:
1
2
3
4
5
6
7
8
9
10
11
12
#include <string>
#include <iostream>

using namespace std;

int main()
{
  string s = "Hello ";
  cout << s << endl;
  s = "world!";
  cout << s << endl;
}


Output:
1
2
Hello 
world!


Create a new paste based on this one


Comments: