码迷,mamicode.com
首页 >  
搜索关键字:argv    ( 3650个结果
Nginx main()源码分析
1 int ngx_cdecl 2 main(int argc, char *const *argv) 3 { 4 ngx_buf_t *b; 5 ngx_log_t *log; 6 ngx_uint_t i; 7 ngx_cycle_t *cycle, init_cycle; 8 ngx_conf ...
分类:其他好文   时间:2021-03-09 13:10:05    阅读次数:0
翻译:《实用的Python编程》03_05_Main_module
目录 | 上一节 (3.4 模块) | 下一节 (3.6 设计讨论) 3.5 主模块 本节介绍主程序(主模块)的概念 主函数 在许多编程语言中,存在一个主函数或者主方法的概念。 // c / c++ int main(int argc, char *argv[]) { ... } // java c ...
分类:编程语言   时间:2021-03-05 13:23:21    阅读次数:0
随机生成mac地址
#!/usr/bin/python # -*- coding: utf-8 -*- import sys import string import random num=int(sys.argv[1]) #随机生成一个MAC地址 def creat_mac(): MAC='41-AF' hex_nu ...
分类:系统相关   时间:2021-02-17 14:53:26    阅读次数:0
销毁僵尸进程
//销毁僵尸进程2#include <stdio.h>#include <stdlib.h>#include <sys/wait.h> int main(int argc, char *argv[]){ int status; pid_t pid=fork(); if (pid==0) { slee ...
分类:系统相关   时间:2021-02-09 12:31:34    阅读次数:0
通过fork函数创建进程
//通过fork函数创建进程#include <stdio.h>#include <unistd.h> int gval=10;int main(int argc, char *argv[]){ pid_t pid; int lval=20; gval++,lval+=5; pid=fork(); ...
分类:系统相关   时间:2021-02-09 12:27:28    阅读次数:0
Qt 基础项目文件
https://www.bilibili.com/video/BV1g4411H78N?p=5 main.cpp 文件 #include "mywidget.h" #include <QApplication>// 包含一个应用程序类的头文件 //main程序入口 argc命令行变量的数量 argv ...
分类:其他好文   时间:2021-02-04 12:09:23    阅读次数:0
Linux汇编
源码及汇编码 func.c源码 #include <stdio.h> int func(int a, int b) { a = 100; b = 200; printf("Hello%d\n", a); return 0; } int main(int argc, char *argv[]) { f ...
分类:系统相关   时间:2021-01-15 12:10:52    阅读次数:0
wustctf2020_name_your_dog
checksec: main: int __cdecl main(int argc, const char **argv, const char **envp) { init(); vulnerable(); return 0; } vulnerable: int vulnerable() { in ...
分类:其他好文   时间:2021-01-02 10:38:32    阅读次数:0
ROP-Tamu CTF 2018-pwn5
1 int __cdecl main(int argc, const char **argv, const char **envp) 2 { 3 print_beginning(); 4 return 0; 5 } 打开IDA,main中调用了print_beginning()。 1 int pri ...
分类:其他好文   时间:2020-12-29 11:15:21    阅读次数:0
ubuntu16.04环境下fatal error: lua.h: No such file or directory
1.apt-get install liblua5.1-0-dev 2.编辑hello.c #include "lua.h" #include "lauxlib.h" int main(int argc, char **argv) { lua_State *L = luaL_newstate(); ...
分类:系统相关   时间:2020-12-22 12:31:57    阅读次数:0
3650条   上一页 1 2 3 4 5 ... 365 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!