I don't what's wrong with this simple piece of code I wrote. It keeps crashing.
Output Screenshots:
http://i.imgur.com/8xwet8m.png
http://i.imgur.com/FXBa8YM.png
#include <iostream>
#include <stdlib.h>
#include <conio.h>
using namespace std;
int main()
{
char *strg;
cin>>strg;
cout << "Hello world!"<< strg<<endl;
getch();
return 0;
}