查看别人的exe调用参数

5次阅读
没有评论

有时候想看别人调用某 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;
}

正文完
 0
116博客
版权声明:本篇文章由 116博客 于2024-11-29发表,共计349字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
评论(没有评论)
验证码