I've been researching everywhere for this issue, yet I can't see what's wrong.
This is the source code.
--------------------------------------------------------------------------------
#include <iostream>
#include <windows.h>
using namespace std;
int main(){
cout << "Location / Memory finder." << endl;
cout << "Version 1 Alpha." << endl;
system("PAUSE");
cout << "Type in a word." << endl;
char word;
cin >> word;
Sleep(500);
cout << "Locating memory of word/string... " << endl;
string wordlocation = &word;
cout <<"Memory location found: Located at memory point "<< wordlocation << endl;
system("PAUSE");