What is System() Function in C?

Question: What is System Function in Standard C Library?

Answer: ‘system()’ function is used to execute SHELL COMMANDS which we can’t use directly in C programs. Note here that program execution doesn’t complete until the COMMAND has completed. This function is defined in ‘stdlib.h’ header and is prototyped as below

    int system(char const *COMMAND);

Note that COMMAND is passed as a string. ‘system()’ function, then, passes this COMMAND to the host environment so that it can be executed as a command by the systems’ command processor. To ensure if command processor exists, call system() with NULL argument and check the return value if it’s non-zero. Let’s work with a simple C program to see how ‘system()’ works on Linux Machine.

/* system.c -- program calls system() to execute SHELL COMMANDS */
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
 
int main(void)
{
    int status;
 
    /* assert if command processor is available */
    assert((system(NULL)) != 0);
 
    /* let's attempt to execute SHELL commands */
    system("ls -l");
 
    /* do some more processing here */
 
    exit(0);
}

Try to execute above program and observe the output! Notice that ‘assert()’ function ensures if command processor is available.

advertisement
advertisement

Sanfoundry Global Education & Learning Series – 1000 C Tutorials.

If you wish to look at all C Tutorials, go to C Tutorials.

If you find any mistake above, kindly email to [email protected]

advertisement
advertisement
Subscribe to our Newsletters (Subject-wise). Participate in the Sanfoundry Certification contest to get free Certificate of Merit. Join our social networks below and stay updated with latest contests, videos, internships and jobs!

Youtube | Telegram | LinkedIn | Instagram | Facebook | Twitter | Pinterest
Manish Bhojasia - Founder & CTO at Sanfoundry
Manish Bhojasia, a technology veteran with 20+ years @ Cisco & Wipro, is Founder and CTO at Sanfoundry. He lives in Bangalore, and focuses on development of Linux Kernel, SAN Technologies, Advanced C, Data Structures & Alogrithms. Stay connected with him at LinkedIn.

Subscribe to his free Masterclasses at Youtube & discussions at Telegram SanfoundryClasses.