10 2020 档案
摘要:原文:http://www.asmedu.net/news.jsp?index=198 ———————————————————————————————————————————————————————————— 很多学习汇编的朋友想必对C也比较了解,因为在当前大学的课程体系里,它很有可能就是你接触到的
阅读全文
摘要:原文:https://www.cnblogs.com/raina/p/11527327.html —————————————————————————————————— Ubuntu安装NASM和简单的使用教程 1. 安装 sudo apt-get install nasm 这样nasm就安装好了,终
阅读全文
摘要:转,原文: http://c.biancheng.net/view/2043.html —————————————————————————————————————— 在实际编程中,我们经常需要生成随机数,例如,贪吃蛇游戏中在随机的位置出现食物,扑克牌游戏中随机发牌。在C语言中,我们一般使用 <std
阅读全文
摘要:原文:http://c.biancheng.net/view/2384.html —————————————————————————————————————— 编译多个源代码文件会生成多个目标文件,每个目标文件都包含一个源文件的机器码和相关数据的符号表。除非使用-c选项指示 GCC 只编译不链接,否
阅读全文
摘要:转,原文: https://www.cnblogs.com/qcrao-2018/archive/2019/07/03/11124360.html —————————————————————————————————————————————————————————————————————— 刚开始写这
阅读全文
摘要:原文:https://www.jianshu.com/p/00ee0ec582a1 编译多个源代码文件会生成多个目标文件,每个目标文件都包含一个源文件的机器码和相关数据的符号表。除非使用-c选项指示 GCC 只编译不链接,否则 GCC 会使用临时文件作为目标文件输出: $ gcc -c main.c
阅读全文
摘要:下面的代码,大括号里面开始了一个新的作用域 { },刚开始 感觉很别扭,之前感觉只有像 if , switch , func 这些结构后面,才会使用大括号{} 下面的代码,也是可以正确执行的。 package main import ( "log" ) func main() { log.Print
阅读全文
摘要:这篇才是原文: https://www.cnblogs.com/hiit/p/11192384.html 原文: https://www.sohu.com/a/327057430_120129354 大厂面试题:今天复试百度PHP工程师 ———————————————————————————————
阅读全文
摘要:原文: https://developer.mozilla.org/en-US/docs/Web/API/File/Using_files_from_web_applications#Example_Using_object_URLs_to_display_images The File inter
阅读全文
摘要:原文: https://www.postgresql.fastware.com/blog/how-postgresql-maps-your-tables-into-physical-files —————————————————————————————————— A few weeks back,
阅读全文
摘要:B树的构造 // a binary tree // node, two child nodes(left, right) // nodes with children are parent node. // child nodes may contain references to their pa
阅读全文
摘要:http://chi.cs.uchicago.edu/chidb/architecture.html
阅读全文
摘要:https://blog.csdn.net/houyanhua1/article/details/88760853 https://www.kancloud.cn/kancloud/the-way-to-go/81392
阅读全文