创建命令以运行并向Windows应用程序提供输入

时间:2014-09-13 18:58:37

标签: c

我想为Windows Embedded Compact创建一个控制台应用程序,它将从User获取一个整数数组输入,该数组将作为参数传递给Application.SO中的一个函数,基本上我想创建一个Command执行该应用程序,该命令还将包含用户想要传递给Application的Integer数组。我的编程语言是C. 我不知道如何从命令提示符运行个性化命令。 任何帮助或链接都将受到极大的赞赏。

谢谢。

1 个答案:

答案 0 :(得分:0)

This is where you start !!!!!!!!!!!!!!!!!

他们被称为命令行参数

基本上你将它传递给main(),如此:

int main(int argc, char *argv[]){
   // argc is atleast 1 (contains the no. of arguments passed)
   // argv[0] contains the image name and path
   // argv[1] = first argument, argv[2] = second argument and so on..
}