#include "CInternet.h" void main() { CInternet ci; std::vector ret; /* ret = ci.GoogleLookup("game programming -amit"); std::vector::iterator i = ret.begin(); for(;i!=ret.end();i++) printf("%s\n",(*i).c_str()); std::string sSpanish; sSpanish = ci.Translate(ENGLISH,SPANISH,"hello how are you? i am fine..."); printf("\n%s\n",sSpanish.c_str()); */ ret = ci.GetRhymes("bat"); std::vector::iterator i = ret.begin(); for(;i!=ret.end();i++) printf("%s\n",(*i).c_str()); }