码迷,mamicode.com
首页 >  
搜索关键字:argv    ( 3650个结果
C 数组下标计算
int main(int argc,char * argv[]) { int arry[] = { 1,2,3 }; //大小下标计算 (int)arry+sizeof(int)*n arry[2] = 30; printf("%x", &arry[2]); printf("%x", (int)ar ...
分类:编程语言   时间:2021-04-20 15:10:21    阅读次数:0
十进制转十六进制
代码: #include <stdio.h> #include <stdlib.h> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int ma ...
分类:其他好文   时间:2021-04-20 14:10:46    阅读次数:0
uboot
uboot启动代码流程 board.c文件__attribute__((nomips16)) void board_init_r (gd_t *id, ulong dest_addr)函数 1、调用do_bootm if(BootType == '3') { char *argv[2]; sprin ...
分类:其他好文   时间:2021-04-09 12:50:57    阅读次数:0
029_Python3 sys 模块
import sys ''' sys.argv 接收命令行参数,生成一个List,第一个元素是程序本身路径 sys.modules.keys() 返回所有已经导入的模块列表 sys.exc_info() 获取当前正在处理的异常类,exc_type、exc_value、exc_traceback当前处 ...
分类:编程语言   时间:2021-04-08 13:38:43    阅读次数:0
OpenCV -- 使用forEach进行并行像素访问
OpenCV中使用forEach进行并行像素访问 在本教程中,我们将比较Mat类的forEach方法的性能和访问和转换OpenCV中像素值的其他方式。 我们将展示如何使用at方法甚至高效地使用指针算法,forEach比使用at方法快得多。 OpenCV中有隐藏的宝石,有时不是很知名。 其中一个隐藏的 ...
分类:其他好文   时间:2021-04-02 13:33:57    阅读次数:0
QT项目-Chart Themes Example学习(一)
1.main.cpp #include "themewidget.h" #include <QtWidgets/QApplication> #include <QtWidgets/QMainWindow> int main(int argc, char *argv[]) { QApplication ...
分类:其他好文   时间:2021-04-01 13:27:59    阅读次数:0
2021.03.27_Reverse_xCTF_IgniteMe_WriteUp
今天早点干活 仍然是常规的Windows可执行程序逆向,拖入exeinfope之后发现没壳直接丢进IDA,找到main函数进入 int __cdecl main(int argc, const char **argv, const char **envp) { int v3; // edx int ...
分类:其他好文   时间:2021-03-29 12:28:35    阅读次数:0
makefile 中 $@ $^ %< 使用
假设有下面这样的一个程序,源代码如下: 1 /* main.c */ 2 #include "mytool1.h" 3 #include "mytool2.h" 4 5 int main(int argc,char **argv) 6 { 7 mytool1_print("hello"); 8 my ...
分类:其他好文   时间:2021-03-16 13:48:47    阅读次数:0
C++实现对本地文件加行号并输出到本地文件
#include <fstream> #include <strstream> using namespace std; int main(int argc,char*argv[]) { strstream textfile; ifstream in(argv[1]); textfile << in ...
分类:编程语言   时间:2021-03-15 11:07:17    阅读次数:0
从文件夹中找需要的信息 并生成csv文件
import os,sysimport csvfile_folder = sys.argv[1]# file_folder = r"/Users/vito/Desktop/0120 "final_info={}txt_path_list=[]# 如需要处理更多log信息,在下面三行最后面添加; 如果 ...
分类:其他好文   时间:2021-03-15 11:04:03    阅读次数:0
3650条   上一页 1 2 3 4 ... 365 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!