码迷,mamicode.com
首页 >  
搜索关键字:argv    ( 3650个结果
选择排序
#include void SelectSort(int A[] , int N);int main(int argc, const char * argv[]) { int A[15] = { 9,8,6,7,5,3,4,1,2,0,4,7,8,3,2}; SelectSort...
分类:编程语言   时间:2014-12-08 17:27:43    阅读次数:160
希尔排序
#include void ShellSort(int A[] , int N );int main(int argc, const char * argv[]) { int A[15] = { 1,3,4,5,6,7,8,8,2,9,10,3,4,5,6,}; Shel...
分类:编程语言   时间:2014-12-08 17:20:21    阅读次数:240
插入排序
#include void InsertSort(int A[] , int N );int main(int argc, const char * argv[]) { int A[15] = { 9,8,6,7,5,3,4,1,2,0,4,7,8,3,2}; Inser...
分类:编程语言   时间:2014-12-08 17:09:12    阅读次数:205
c 时间 学习
linux#include #include int main(int argc,char **argv){ //两种时间的获取方法 struct timeval tv; gettimeofday(&tv,NULL); time_t t=time(0); printf(...
分类:其他好文   时间:2014-12-06 12:43:42    阅读次数:156
文件操作:输出文件二进制数据
#include int main(int argc, char *argv[]){ int i; FILE *fp = NULL; unsigned char *pData; int iLen, itmpLen, itmp; fp = fopen(argv[1], "...
分类:其他好文   时间:2014-12-05 20:54:06    阅读次数:237
php cli 小技巧
很简单,特别方便php做一些cli应用的调试和PHP模版源于:http://www.huiyi8.com/php/1. [代码][PHP]代码 <?phpvar_dump($argv);2. [代码][Shell/批处理]代码 @echo off:BEGINset /p input=any ke.....
分类:Web程序   时间:2014-12-04 17:42:33    阅读次数:140
【UNIX】怎么将buf和fgets运用在文件IO中open函数中
open函数打开创建文件一般有几种方式: 1)第一种情况下是通过指定路径: open =("/tmp/text..c",O_RDWR|O_CREAT|O_APPEND,0666); 这样就会在/TMP文件目录下就会自动创建了text.c了文件 2)通过int mian (int argc,char *argv[])在shell终端输入命令,指定文件,会在缺省情况下自动创建不要自定文...
分类:其他好文   时间:2014-12-03 12:28:05    阅读次数:203
Objective-C NSString 创建初始化的几种方法
1 #import   2    3 int main(int argc,const char *argv[])   4 {   5    6     NSAutoreleasePool *pool = [[NSAutoreleasePool alloc]init];   7     //从文件获取字符串 编码、错误  参数   8     NSStringEncoding enc...
分类:其他好文   时间:2014-12-03 10:35:01    阅读次数:211
函数指针
一、指向普通函数的指针 要符合两点要求: 1返回类型相同 2参数类型、个数、顺序相同 实例: int Max(int a,int b){ return a>b?a:b; } int (*pFun)(int a,int b); int _tmain(int argc, _TCHAR* argv[]){...
分类:其他好文   时间:2014-12-02 22:08:41    阅读次数:168
《Linux程序设计 第四版》之第四章的练习题
1、P128 一个获取日期 时间 格式化获取时间 日期 的程序。 #include #include int main(int argc,char** argv) { struct tm* time1,*time_trans; //时间数据结构 time_t alt; char c_time[128]; char* result; char* result1=""; time(...
分类:系统相关   时间:2014-12-02 09:03:05    阅读次数:242
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!