#include "URLEncode.h" #include #include using namespace std; int main(int argc, char *argv[]) { string test = string("Testing: !@#$%^&*() " __DATE__ " " __TIME__); cout << test << endl; cout << URLEncode(test) << endl; }