Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

is it possible to convert

Status
Not open for further replies.

mg911

Technical User
Jul 18, 2001
59
US
is it possible to convert a c program to a java program

I found a program called C2J but it is not working effectively

I have all the code in C but I do not want to convert thousands of lines of code -

can anyone help

thanks

 
It is possible.
Take note that in Java there are no pointers because the objects themselves act as pointers. Rome did not create a great empire by having meetings, they did it by
killing all those who opposed them.

- janvier -
 
ok what about the struct command in c

ex

struct myexample{
char *itemName;
int itemInedex;
struct myexample *right, *left;
};

the char * i do not know how to get that in to java....

thanks again
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top