Simple Function Generator
Very simple code I made in like 5 minutes. It just uses addy but creating a function generator with offset is super easy also:
Code:
/***************************************
* Simple Function Creator
* Created by scraprecon
* Date started: 9/9/2012
****************************************/
#include <Windows.h>
#include <iostream>
#include <string>
using namespace std;
int main()
{
string type;
string addy;
float value;
cout << "Type:\n";
cin >> type;
cout << "Addy:\n";
cin >> addy;
cout << "Value:\n";
cin >> value;
cout << "Generating...\n";
Sleep(3000);
cout << "*(" << type << "*)(" << addy << ") = " << value << ";\n";
system("PAUSE");
return 0;
}