[ create a new paste ] login | about

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

C++, pasted on Mar 27:
1
2
3
4
5
6
7
8
9
#include <string>
#include <iostream>
using namespace std;
int main()
{
    char ch[] = "hello";
    cout << &ch[0] << endl;
    return 0;
}


Output:
1
hello


Create a new paste based on this one


Comments: