摘要:
/*【位运算符】运算符: 运算 范例 说明3*2*2=12 >>: 右移 3>>2=1---->3/2=1>>>: 无符号右移 3>... 阅读全文
摘要:
/*【位运算符】运算符: 运算 范例 说明3*2*2=12 >>: 右移 3>>2=1---->3/2=1>>>: 无符号右移 3>... 阅读全文
摘要:
#include#include#include#include#define TRUE 1#define FALSE 0#define OK 1#define ERROR 0#define OVERFLOW -1typedef int Status;#define MaxStrSize 255 ... 阅读全文
|