I have to call a c exe from a java program. I search the net & found this kind of solution repeatedly but it did not work for me.
Runtime r = Runtime.getRuntime();
Process p = null;
p = r.exec("C:/c-test.exe");
thanX a lot in advance for any kind of help.....