好友
阅读权限10
听众
最后登录1970-1-1
|
有时候想看别人调用某 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;
}
printexe.zip
(5.65 KB, 下载次数: 99)
|
免费评分
-
查看全部评分
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|