技术的乐趣在于分享,欢迎多多交流,多多沟通。
全部博文(877)
发布时间:2014-12-04 17:30:59
http://www.cnblogs.com/qyaizs/articles/2039101.htmlstruct和typedef struct彻底明白了struct和typedef struct分三块来讲述: 1 首先://注意在C和C++里不同 在C中定义一个结构体类型要用typedef: typedef struct Student { int a; }Stu; .........【阅读全文】
发布时间:2014-12-04 17:29:13
typedef struct tagPOINT{int x;int y;}POINT;与typedef struct{int x;int y;}POINT;在C语言中有什么区别呢? 答: 一个 第一个还可以用 struct tagPOINT point;这样定义变量 第二个不行.........【阅读全文】
发布时间:2014-12-04 14:11:20
#include <stdio.h>#include <string.h>#define IN #define OUT typedef unsigned char BYTE;static void sTringToChar(IN BYTE * pbIn, OUT BYTE * pbOut){BYTE bvar,foo;BYTE temp1,temp2;//strupr(pbIn);bvar = strlen(pbIn);for(foo = 0; foo < (bvar >> 1); ++foo){//*(pbOut + foo) = ( ( .........【阅读全文】
发布时间:2014-12-04 13:51:55
http://www.tuicool.com/articles/ema6ziRunsigned int与int相加问题时间 2014-05-12 22:02:25 CSDN博客原文 http://blog.csdn.net/qingdujun/article/details/25654389作者 : 卿笃军一道unsigned int与int类型的相加题目,引发了我对这个问题的思考。.........【阅读全文】