编译:接受源代码,转换为中间文件目标代码(扩展名为.o);通过链接形成二进制文件--运行编译hello文件gcc -o hello.c第一部分 基本结构1)所有C程序包含一个主要的结构,格式:main(){;}对main()使用命令行参数,格式:main(int argc,char *argv[])...
分类:
编程语言 时间:
2014-11-28 16:09:49
阅读次数:
236
C/C++语言中的main函数,经常带有参数argc,argv,如下:int main(int argc, char** argv)int main(int argc, char* argv[])这两个参数的作用:argc 是指命令行输入参数的个数(以空白符分隔)argv存储了所有的命令行参数假如你...
分类:
其他好文 时间:
2014-11-27 12:06:59
阅读次数:
125
Implement atoi to convert a string to an integer.Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below a...
分类:
其他好文 时间:
2014-11-27 08:00:27
阅读次数:
319
题目:见附件这题目被提示的运行两次坑了。OD载入,设置命令行参数pass.db。F8到VirtualAlloc函数,发现size参数为0,导致函数调用失败。根据pass.db长度,设置size=0x10,F8继续。发现CreateFileA的FileName参数依然是pass.db,修改成pas1.db。F9正常运行,得到pas1.db文件。..
分类:
其他好文 时间:
2014-11-26 16:46:16
阅读次数:
268
Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a challenge, please do not see below and ...
分类:
其他好文 时间:
2014-11-26 01:20:04
阅读次数:
233
Linux提供了一个解析命令行参数的函数。 #include int getopt(int argc, char * const argv[], const char *optstring); extern char *optarg; extern int optind, opterr, optop...
分类:
其他好文 时间:
2014-11-25 23:21:16
阅读次数:
242
命令行参数 操作符: space 与 (AND) | 或 (OR) ! 非 (NOT) 分组 " " 搜索引号内的词组. 通配符: * 匹配 0 个或多个字符. ? 匹配 1 个字符. *. 匹配不包含扩展的文件名. *...
分类:
其他好文 时间:
2014-11-24 23:55:47
阅读次数:
349
运行Nagios的基本操作7.1.验证配置文件的正确性每次修改过你的配置文件,你应该运行一次检测程序来验证配置的正确性。在运行你的Nagios程序之前这是很重要的,否则的话会导致Nagios服务因配置的错误而关闭。为验证你配置,运行Nagios带命令行参数-v,象这样:/usr/local/nagios..
分类:
移动开发 时间:
2014-11-23 16:06:51
阅读次数:
193
int atoi(const char *str) { long long result = 0; while (*str==' ')str++; int flag=0; if (*str == '-' || *str == '+') { flag = (*str == '-') ? -1 : 1....
分类:
其他好文 时间:
2014-11-23 15:47:53
阅读次数:
166