[ create a new paste ] login | about

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

C++, pasted on Nov 23:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <iostream>

int main()
{
    char stuff[] = "hello world";

    /*stuff[0] = 'h';
    stuff[1] = 'e';
    stuff[2] = 'l';
    stuff[3] = 'l';
    stuff[4] = 'o';
    stuff[5] = ' ';
    stuff[6] = 'w';
    stuff[7] = 'o';
    stuff[8] = 'r';
    stuff[9] = 'l';
    stuff[10] = 'd';*/

    cout << stuff;

}


Output:
1
hello world


Create a new paste based on this one


Comments: