全部博文(280)
发布时间:2012-12-12 11:05:54
#include <stdio.h>#include <string.h>#include <sys/socket.h>#include <netdb.h>#include <time.h>#include <stdlib.h> #define debug 1#define TIMEOUT 3#define JAN_1970 0x83AA7E80#define NTP_SERVER_1 "114.80.81.1" //cn.pool.ntp.org#define NTP_SERVER_......【阅读全文】
发布时间:2012-12-10 10:33:38
typedef int A[10];A *a = new A[1]; //A *a = new A;编译不过int (*aa)[10] = new int[1][10];std::cout << "type of A: " << typeid(A).name() << " " << typeid(*a).name() << " " << typeid(*aa).name() << std::endl;int *p = new int(3);s......【阅读全文】
发布时间:2012-11-24 22:00:45
最近做一个移植项目, 用到C调用Python, 在网上搜了好多资料,但是发现按照......【阅读全文】