Did you know there are also female software developers?
code of c in java......i have made a gui form so that
i want c code for running the process.would yu kindly
explain the code.......
You can do it through JNI:
http://java.sun.com/developer/onlineTraining/Programming/JDCBook/jni.html
Sanjeev u need to know about JNI and need Java as well as a C compiler.
You have touse JNI with your C code, compile it and get a .dll file that you can use with Java by loading the library dll file using the
loadLibrary(libname);
You can then easily call the C procedures you have written.
But u really need to understand JNI.