有时候想看别人调用某 exe 参数,可以用下面代码 编译后,可以改成与原来一样的名字放在那里就可以详细看到别人调用某exe参数
#include "stdafx.h"
#include "stdio.h"
#include "windows.h"
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
FILE* fp;
fp = fopen("D:\\canshuout.txt", "w");
cout << "参数如下" << endl;
for (int i = 0; i < argc; i++)
{
fputs(argv, fp);
cout << argv << endl;
}
fclose(fp);
cout << "调用参数完毕参数" << endl;
getchar();
return 0;
}
正文完