1,c的令牌(Tokens) 这五个令牌是: 2,分号是语句的结束符3,注释是 /*次语言的注释*/(注意注释不能嵌套注释) 4,标识符 C 标识符是用来标识变量、函数,或任何其他用户自定义项目的名称。一个标识符以字母 A-Z 或 a-z 或下划线 _ 开始,后跟零个或多个字母、下划线和数字(0-9 Read More
posted @ 2017-10-16 19:14 BlueBerry006 Views(328) Comments(0) Diggs(0) Edit
SecureCRT是一款很好用的远程登陆管理工具 工具和注册机下载链接:http://pan.baidu.com/s/1jImWiMU 密码:0yox 以管理管运行keygen.exe(一定要以管理员运行否则patch会失败) 点击patch 选择SecureCRT.exe 在选择LicenseHe Read More
posted @ 2017-10-06 16:10 BlueBerry006 Views(21855) Comments(0) Diggs(1) Edit
文件是否存在判断 1,if exist fileName如if exist c:\a.txt (echo c:\a.txt 存在) else (echo c:\a.txt不存在) 字符串是否相等 1,if %name%=="lisi" (echo 他的名字是lisi) else (echo 他的名字 Read More
posted @ 2017-09-30 14:38 BlueBerry006 Views(4338) Comments(0) Diggs(0) Edit
movsb 把寄存机esi所存的地址的数据以字节复制到edi movsw 把寄存机esi所存的地址的数据以word复制到edi movsd 把寄存机esi所存的地址的数据以dword复制到edi db dw dd Read More
posted @ 2017-08-27 18:30 BlueBerry006 Views(2167) Comments(0) Diggs(1) Edit
2,如果出现运行时异常,可以有一个友好的提示避免直接推出应用,还可以获取异常信息 在Appliction 中的使用 Read More
posted @ 2017-08-14 18:24 BlueBerry006 Views(681) Comments(0) Diggs(0) Edit
posted @ 2017-08-13 20:09 BlueBerry006 Views(280) Comments(0) Diggs(0) Edit
32位通用寄存器 32位:EAX EBX ECX EDX ESP EBP ESI EDI 每个寄存器的最大宽度是32位 16位:AX BX CX DX SP BP SI DI 8位 :AL BL CL DL AH BH CH DH 想寄存器存一个数字可以用mov指令 mov eax,1 就是把1存到 Read More
posted @ 2017-08-13 19:31 BlueBerry006 Views(1201) Comments(0) Diggs(0) Edit
十六进制对应的二进制码 0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 1010 1011 1100 1101 1110 1111 0 1 2 3 4 5 6 7 8 9 a b c d e f 不管什么程序最终都编译成二进制码,而十六进制是这些二 Read More
posted @ 2017-08-06 18:56 BlueBerry006 Views(2459) Comments(0) Diggs(0) Edit
第一个c程序 第一天就出现很多问题 vs2017 在打开MFC rc文件时找不到rcdll.dll 你可以从下面这个文件夹把rc.exe和rcdll.dll这两个文件拷贝出来 然后粘贴在下面这个文件夹 好了今天就到这个了,谢谢大家 Read More
posted @ 2017-08-05 22:11 BlueBerry006 Views(518) Comments(0) Diggs(0) Edit