码迷,mamicode.com
首页 >  
搜索关键字:argc    ( 2629个结果
linux 下各errno的意义
strerror(errno):获取errno对应的错误#include /* for strerror */#include #include int main(int argc, char ** argv) { int i = 0; for(i = 0...
分类:系统相关   时间:2014-11-05 10:39:31    阅读次数:262
ffmpeg源码分析二:main函数和transcode函数 (转2)
原帖地址:http://blog.csdn.net/austinblog/article/details/24804455首先从main函数看起,关键解释部分已加注释,该函数在ffmpeg.c文件中。代码如下:int main(int argc, char **argv){ int ret; ...
分类:其他好文   时间:2014-11-04 19:37:07    阅读次数:291
算法竞赛入门经典 习题 3-5 3-6 进制转换
习题3-6 输入基数b(2 #include #include #define MAXN 100 int a[MAXN]; int main(int argc, char *argv[]) { int b, n, i = 0, j; scanf("%d %d", &b, &n); while(n/b != 0 || n%b != 0) { a[i++...
分类:编程语言   时间:2014-11-04 17:36:43    阅读次数:139
算法竞赛入门经典 习题3-1 分数统计 习题 3-2 单词的长度
习题3-1 分数统计 输入一些学生的分数,哪个分数出现的次数最多?如果有多个并列,从小到大输出。 任务1:分数均不超过100的非负整数 任务2:分数均不超过100的非负实数,但最多保留两位小数。 任务1 #include #include #include #define MAXN 101 + 10 int a[MAXN]; int main(int argc, char *...
分类:编程语言   时间:2014-11-04 15:01:38    阅读次数:224
upx防解压
直接搜索文件中的 UPX! 字样 ,然后填充00 搞定? ? 不过对于这种文件还是可以修改 upx 的源代码强制解压,目前Linux上还没看到内存中 dump ?elf 文件的例子 ? 写了个小脚本? <?php if($argc?<?2) { ??...
分类:其他好文   时间:2014-11-04 13:21:07    阅读次数:226
函数指针
1 #include 2 #include 3 4 int f(int); 5 6 int main(int argc, char *argv[]) 7 { 8 int ans; /*创建函数指针pf,该函数返回值为整型,并有一个整型的形参*/ 9 int (*pf)...
分类:其他好文   时间:2014-11-04 12:42:52    阅读次数:144
控制台应用程序C++输出菱形
// Rhombus.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include using namespace std;void rhombus(char,char,int);int _tmain(int argc, _TCHAR* arg...
分类:编程语言   时间:2014-11-04 12:28:25    阅读次数:184
程序猿之---C语言细节7
主要内容:检测两个整型相加是否溢出 #include #include int main(int argc, char *argv[]) { /* * a和b为非负整型变量,检测a+b是否会“溢出” */ // INT_MAX=2147483647 int a=123456789,b=2147483000; /* 方法一: if(a+b...
分类:编程语言   时间:2014-11-04 00:15:00    阅读次数:179
程序猿之---C语言细节5
主要内容:字符串内存分配、合并两个字符串 #include #include int main(int argc, char *argv[]) { /* * 字符串操作:内存分配 * 字符串s和t,希望将这两个字符串连接成单个字符串r */ char* s = "abc"; char* t = "def"; // 方法一: 缺点:1、不能确定r指向何处;2、同...
分类:编程语言   时间:2014-11-03 22:33:51    阅读次数:260
算法竞赛入门经典 习题 2-10 排列(permutation)
习题 2-10          用1,2,3,....,9组成3个三位数abc,def和ghi,每个数字恰好使用一次,要求abc:def:ghi=1:2:3。输出所有解。 #include #include #include int main(int argc, char *argv[]) { int abc, def, ghi; int a[10], count = 0; ...
分类:编程语言   时间:2014-11-02 15:04:37    阅读次数:204
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!