#include<stdlib.h>
#include<stdio.h>
#include<string.h>
void Encry()
{
char key[100];
char ch, temp;
int L, i = 0, j = 0;
if (getchar() == “\n”)
temp ……继续阅读 »
8年前 (2017-05-02) 1169浏览
0个赞
本人现在得到一个buffer,这个buffer里的数据如下:
rowid,id,name,groupid,ip,states
1,1,张三,武汉,192.168.1.100,0
2,2,李四,武汉,192.168.1.102,1
3,3,王五,北京,192.168.1.103,1
其实就是一个csv被本人直接读取出来了。 现在本人想做的是把这个相似通讯录的……继续阅读 »
8年前 (2017-05-02) 1359浏览
0个赞
求高手讲解一下libjson-c中的引用计数和对象全部权。为什么本人可以一直对一个json_object对象进行json_object_put操作,即使这个对象没有分配空间也可以!又为什么本人将一个json_object对象通过json_object_object_add添加到另一个json_object中,本人依然可以对被添加的对象进行json_objec……继续阅读 »
8年前 (2017-05-02) 1321浏览
0个赞
最近在熟悉xbmc这款播放器,然后就想试试看能不能找到源代码,还老是开源的,所以下载了一个14版本的code,准备用vs2013run一下,但是run的时候,发现出现了错误导致无法运行,本人也知道是头文件没有或是路径问题,但是搜索了一下project,并没有发现相应的hpp文件,所以来问各位大佬怎么样解决,小弟不胜感激
解决方案
100
例如你将boost安……继续阅读 »
8年前 (2017-05-02) 1817浏览
0个赞
We found that the Seller and/or Artist names associated with your app still do not reflect the name, “北京****公司,” in the app and/or its name and metadata.
To be appropri……继续阅读 »
8年前 (2017-05-02) 1289浏览
0个赞
例如: ./main ../conf/config.cfg > ../console.log 2>&1 & // 求帮助怎么不关闭main 改变console.log 的大小(使lstat获取的st_size 和 占有的磁盘空间一样大)
解决方案
40
仅供参考:
#include <stdio.h>
#includ……继续阅读 »
8年前 (2017-05-02) 992浏览
0个赞
解决方案
5
乍看起来c++的cin、cout、ifstream、ofstream、istringstream、ostringstream在输入、输出上比c的scanf、printf、fscanf、fprintf、fread、fwrite、sscanf、sprintf简单,不用格式控制符!
但是不用格式控制符,输入输出恰好是你期望的格式的时候好说;等到输入……继续阅读 »
8年前 (2017-05-02) 1113浏览
0个赞
今天尝试想把用户输入的文件名,然后打开,可是一直是打不开的txt,求指导本人代码错了吗?代码如下:
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
/* Function prototypes */
string p……继续阅读 »
8年前 (2017-05-02) 1963浏览
0个赞
#include “iostream”
#include “stdio.h”
using namespace std;
class student
{
public:
char *name[2][1];
void Rename(char * (*myname)[1]);
};
char *p[2];
void ……继续阅读 »
8年前 (2017-05-02) 1138浏览
0个赞