1
我想使用Nodejs子進程編譯C程序。將運行時參數傳遞給Nodejs子進程
Ç.out文件執行功能:
var exec= require('child_process').exec;
exec("test.exe",function(err,stdout,stdin){
//call back handling code here
});
C程序:
#include <stdio.h>
int main()
{
char msg[8];
scanf("Please endter %s",&msg)
printf("Hello world %s\n", msg);
return 0;
}
如何運行scanf的輸入參數傳遞給子進程?
你嘗試通過它像'EXEC( 「test.exe的消息」,函數(){})'。 – Mritunjay
這適用於如果我的主要方法專家CLI的任何參數,但這不適用於scanf輸入(@運行時)。 – venkat7668