Van N. Sy wrote:
> How do I tell C to run an executable file located in my hard
> disk. I have a SUN SparcStation5 running under SunOS 4.1.4.
The standard C call is system(). It takes a command line as argument and
passes this to the command processor of your operating system (the UNIX
shell on UNIX).
system() is part of the standard C library and does not depend much on
which operatingsystem you use (provided that it has a command processor
that can execute the command line).
---
Henrik Nordström