I am unable to run c executable file from a java program in ubuntu.
I created executable file using following command :
gcc ex.c -o process
In java program i tried everything i could find but no result.
Runtime.getRuntime().exec("/home/cori/Desktop/process.exe);
another method
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec("process");
Please suggest.