Quick actions

cmd+k|ctrl+k

Navigation

Languages

Some simple code

Snippet info

Language

Cpp

Visibility

public

Author

humanshapedhole

Created

2016-07-25T12:52:53Z

Updated

2016-07-25T12:57:11Z

#include <iostream>
using namespace std;

int main() {
    char* name = new char[100];
    cin >> name;
    cout << "Hello, " << name <<"!";
}
INFO