system.c

来自「里面包含很多c语言的源码」· C语言 代码 · 共 30 行

C
30
字号
/* Demonstrates the system() function. */
#include <stdio.h>
#include <stdlib.h>

int main( void )
{
    /* Declare a buffer to hold input. */

    char input[40];

    while (1)
    {
        /* Get the user's command. */

        puts("\nInput the desired system command, blank to exit");
        gets(input);

        /* Exit if a blank line was entered. */

        if (input[0] == '\0')
            exit(0);

        /* Execute the command. */

        system(input);
    }
    return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?