【C笔记】前缀 对应 数据型态

                      前缀 对应 数据型态
c          char或WCHAR或TCHAR
by        BYTE (无正负号字符)
n          short
i           int
x, y      int分别用作x坐标和y坐标
cx, cy   int分别用作x长度和y长度;C代表「计数器」
b或f      BOOL (int);f代表「旗标」
w         WORD (无正负号短整数)
l           LONG (长整数)
dw       DWORD (无正负号长整数)
fn         function(函数)
s          string(字符串)
sz         以字节值0结尾的字符串
h         句柄
p          指标
原文地址:https://www.cnblogs.com/stublue/p/1661264.html