摘要:
宏程序定义 %2000 ....... ; %20001 ...... ; //变量赋值 #1 = 100 #2 = 200 #3 = #1 + #2 //运算符 + - * / //逻辑运算符 AND OR NOT 位运算 四舍五入圆整 #i=round[#j] 或 #i=#jor#k 异或 #i 阅读全文
摘要:
{ //https://www.nasm.us/ } 阅读全文
摘要:
//http://cn.epubee.com/books/?s=c%2B%2B&action= 这5个电子书网站,可以免费下载所有书籍 免费下载站 电子书下载不用愁,这5个精品电子书网站解您忧。网上流传着很多电子书资源网站汇总,但是有很多都是以讹传讹,有相当多的网站要么打不开,要么质量无法保证,为了 阅读全文
摘要:
{ //https://www.jb51.net/shouce/dos/ } 阅读全文
摘要:
{ //http://bestcbooks.com/recommended-cpp-books/ } 阅读全文
摘要:
{ //https://www.linuxprobe.com/books } 阅读全文
摘要:
#pragma warning (disable: 4305)//关闭警告 #pragma warning (disable: 4996)//关闭警告 //#pragma warning (once: 4996)//只显示一个 阅读全文
摘要:
{ 一.下载 https://github.com/vim/vim-win32-installer/releases 二.将vim程序加到环境变量path中 此电脑 >右击属性 >高级系统设置 >环境变量 >编辑 >新建 >将vim程序所在路径 复制(一定要复制!!!! 不然会出错) >确定 复制路 阅读全文
摘要:
android.mk LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) #/////////////////////////////////////////////////////////////////////////////////////// 阅读全文
摘要:
std::string strings("fjsdlkfjlsdkjfl"); strings += '\0'; strings += "fdsfjdsljfl"; int len = 0; std::string tmp = strings; len = tmp.size(); //此时len ! 阅读全文