上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页
摘要: 《Programming Abstractions In C》学习第52天,p130-p131,总结如下: # 一、技术总结 ## 1. pig latin game 通过pig latin game掌握字符复制,指针遍历等操作。 ```c /* * 输入:字符串,这里采用书中坐着自定义的getli 阅读全文
posted @ 2023-08-28 08:50 codists 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 《Programming Abstractions In C》学习第51天,p127-p129,总结如下: # 一、技术总结 ## 1. string library 掌握常用函数如strlen,strcpy用法。 ## 2.buffer overflow(缓冲区溢出) (1)什么是buffer? 阅读全文
posted @ 2023-08-24 21:33 codists 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 《Programming Abstractions In C》学习第50天,p123-p126,总结如下: # 一、技术总结 ## 1.notaion 这也是一个在计算机相关书籍中出现的词,但有时却不是那么好理解,因为它可以指代很多对象,这里做一个记录。示例:p124。 In C, you can 阅读全文
posted @ 2023-08-21 22:36 codists 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 《Programming Abstractions In C》学习第49天,p118-p122,总结如下: # 一、技术总结 ## 1.随机数 (1)seed p119,"The initial value--the value that is used to get the entire proc 阅读全文
posted @ 2023-08-20 22:19 codists 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 《Programming Abstractions in C》学习第48天,p114-p117,​总结如下: 一、技术总结 主要通过random number介绍了随机数的相关用法,interface​示例(random.h)​,client program示例(craps.c)。 ``` #inc 阅读全文
posted @ 2023-08-16 23:17 codists 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 《Programming Abstractions In C》学习第47天,p111-p113,总结如下: 一、技术总结 1.boilerplate ```c /* * File: random.h * Version: 1.0 * Last modified on Fri Jul 22 16:44 阅读全文
posted @ 2023-08-15 12:51 codists 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 《Programming Abstractions In C》学习第46天,p107-p110,3.1小节——“The concept of interface”,总结如下: 一、技术总结 1.client p108,调用library的program称为client。 2.interface p1 阅读全文
posted @ 2023-08-13 23:05 codists 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 《Programming Abstractions In C》学习第45天,p91-p102,完成第二章内容学习。总结如下: 一、技术总结 1.垃圾回收 p91,"Some language, including Java support a system for dynamic allocatio 阅读全文
posted @ 2023-08-10 23:22 codists 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 《Programming Abstractions In C》学习第44天,p88-p90总结。 一、技术总结 1.内存分配 内存分配可以分为:static allocation、automatic allocation、dynamic allocation。内存分配使用的函数为:malloc()。 阅读全文
posted @ 2023-08-09 23:37 codists 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 《Programming Abstractions In C》学习第43天,p84-p87总结。 一、技术总结 1.record record也称为structure(结构体),是一种数据结构。record里面的成员称为record的field。对于record,需要其基本用法:定义、声明、fiel 阅读全文
posted @ 2023-08-08 23:35 codists 阅读(14) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页