views:

106

answers:

2

hi i want to use google-translate as part of a C code i am writing i understand that google-translate is use with java-script

my question is how i get it work as part of my C code?

how i make a connection from my C code to the google site?

+4  A: 

You can use google translate api with CURL

Xinus
can you tell me what curl is?
nisnis84
curl is a library for transferring data using various protocols ..more information here http://en.wikipedia.org/wiki/CURL
Xinus
http://code.google.com/apis/ajaxlanguage/documentation/#fonje is a better link for the API.
Matthew Flaschen
+3  A: 

First make sure you're not violating their terms of service. Just because it's freely available on the web doesn't mean it's freely available to embed into applications.

Then look into a library that lets you "simulate" web interactions from C, such as cURL.

unwind
+1 for "terms of service" link
Xinus
+1 for "terms of service" again. Important Point. : )
Jay