How do I execute another program from within a C program in Windows 32 – in a similar way as Perl’s system() function or Python’s sub-process module – such as DEL, REG, or other cmd.exe programs?
How do I execute another program from within a C program in Windows 32
Share
C does have a
systemfunction in its standard library, see e.g. the wikipedia entry about it.