码迷,mamicode.com
首页 >  
搜索关键字:char    ( 35907个结果
rapidjson的read和write的sample
#include "json/document.h"#include "json/prettywriter.h"#include "json/stringbuffer.h"void test(){ //read json char json[100] = "{ \"hello\" : \"wo...
分类:Windows程序   时间:2014-06-18 21:05:40    阅读次数:702
多线程读写锁机制
1 #include 2 #include 3 #include 4 #include 5 #include 6 static pthread_rwlock_t rwlock; 7 #define WORK_SIZE 1024 8 char work_area[WORK_...
分类:编程语言   时间:2014-06-18 20:01:38    阅读次数:349
iOS学习笔记---c语言学习第七天
结构体结构体是一种自定义的数据类型struct 结构体名{ 类型说明符 成员名; … 类型说明符 成员名;};#import int main(int argc, const char * argv[]){ struct teacher{ char name[30]; ...
分类:移动开发   时间:2014-06-18 19:42:08    阅读次数:413
二进制文件和ASCII文件有何差别
二进制文件和ASCII文件(即文本文件)的差别,对于和计算机亲近时间尚短的同学是个难题。本文用简单的样例,试图展示当中的道道,希望能对菜鸟们有些帮助。1、一个样例:两种100000 有程序:#includeusing namespace std;int main( ){ char c[8]="...
分类:其他好文   时间:2014-06-18 19:27:53    阅读次数:166
常见函数实现
---恢复内容开始---strcpy实现:char *mycopy(char *strDest,const char *strSrc){ if (strDest == NULL || strSrc == NULL ) { return NULL; } char *strDestCopy ...
分类:其他好文   时间:2014-06-18 17:08:05    阅读次数:160
C++例题1:输出可打印字符
#include#include#includeint main(){ int i;char a=0; for(i=0;i<128;i++) { if(isprint(a)) { std::cout<<a<<" "; std::cout<<std::dec<<i<<" "; std:...
分类:编程语言   时间:2014-06-18 16:28:05    阅读次数:208
UDP编程之三
三、组播模型muticast.c 1 #include 2 3 #define PORT 8088 4 5 #define MULTIIP "225.0.0.1" 6 7 int main(int argc,char **argv) 8 { 9 if(argc!=2)10 {...
分类:其他好文   时间:2014-06-18 16:23:20    阅读次数:234
字符串分割方法
public static String[] split(String str, String limit) { List result = new ArrayList(); char[] chars = limit.toCharArray(); ...
分类:其他好文   时间:2014-06-18 16:01:29    阅读次数:216
UDP编程之二
广播模型broadcast.c 1 #include 2 3 #define PORT 8088 4 5 int main(int argc,char **argv) 6 { 7 if(argc!=2) 8 { 9 printf("%s \n",argv[0])...
分类:其他好文   时间:2014-06-18 15:55:32    阅读次数:189
C socket demo
一、服务端-server.c#include #include #include #include #include #include #include #define MAXPENDING 5#define BUFFSIZE 32void Die(char *mess){ perror(me...
分类:其他好文   时间:2014-06-18 14:21:55    阅读次数:154
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!