摘要:
有关内存的思考题1、void GetMemory(char *p){ p = (char *)malloc(100);}void Test(void){ char *str = NULL; GetMemory(str); strcpy(str, ... 阅读全文
摘要:
标准Hello World程序:-------------------------------------------------------int main(int argc,char* argv[]){ printf("Hello World!\n"); ... 阅读全文
摘要:
一.将双字节转成2个单字节,eg:0x1100-->0x11和0x00 #define HI_UINT16(a) (((a) >> 8) & 0xFF) #define LO_UINT16(a) ((a) & 0xFF)二.判断是大端模式还是小端模式int checkCPU(void) { unio 阅读全文
摘要:
在Unicode下,lstrlen等同lstrlenW(LPCWSTR lpString),在非Unicode下等同lstrlenA(LPCSTR lpString)。而lstrlenW又等同于wcslen,lstrlenA又等同于strlen,只不过一个是C的标准函... 阅读全文
摘要:
1>分割字符串#pragma once#include #include using namespace std;//分割字符串,之间用逗号分开void CO_Split(const wstring &src, wstring separate_character,v... 阅读全文