system
system(t_command) =>x_result
Description
Spawns a separate UNIX process to execute a command.
Arguments
Value Returned
Examples
The output of the system() command is redirected to a UNIX terminal window
system( "date" )
Tue Aug 22 16:24:33 IST 2017
0
system( "daa" )
sh: daa: not found
1
Related Topics
Return to top