C 語言標準函數庫分類導覽 - stdlib.h system()

stdlib.h 的函數 system() 接受作業系統的指令字串當參數,使程式執行作業系統的指令。



以下程式示範使用 system() 的結果
#include <stdlib.h>
#include <stdio.h>

int main(void)
{
    system("date");
    
    return 0;
}

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:csystem.c
    功能:示範 stdlib.h 中函數 system() 的使用
    作者:張凱慶
    時間:西元2010年6月 */


編譯後執行,結果如下



您可以繼續參考


1 則留言:

匿名 提到...

用Visual Studio 2017的話,要加#include 才不會出現error C3861: 'system': identifier not found這個情況哦~