全部博文(1293)
发布时间:2012-12-24 17:28:13
// d-linklist.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <malloc.h> #include <assert.h> #include <stdio.h> #include <stdlib.h> #define OK 0 #define FAIL -1 typedef struct DLINKLIST { DLINKLIST *pPrevNode; DLINKLIST* pNextN......【阅读全文】
发布时间:2012-11-03 16:38:27
一、工程案例 1、工程代码 /**************************************************************** * Name : int_type.c * Author : dyli2000 * Date : 2012103 * Description : * 代码判断CPU是大端还是小端模式的.........【阅读全文】