Hi,
In java, we can run a program remotely by doing something like this:
Runtime.exec("ssh machinename programname")
I was wondering whether I can do the same in C using some standard library function call. Also is this possible to get a handle to the remote program's input/output to see its console output or provide input (as done in java)?
Thanks.