posted 21 years ago
Well, if you want a C program to interact with a Java program, you can use JNI, as I understand. JNI = Java Native Interface. You could, for example, write a library of functions in C, and have your Java program load up the library and call the functions. There are rules about how to convert types and make calls. There is an online tutorial on JNI at Sun...check out the J2SE docs under JNI for details.