上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 34 下一页
摘要: 《Programming Abstractions In C》学习第56天,p144-p160。完成第三章内容学习,第三章总计54页(p107-p160),耗时10天,平均6页/天。 # 一、技术总结 第三章的内容主要介绍C语言中的库(library)和接口(interface),如我们最常遇到的以 阅读全文
posted @ 2023-09-06 08:46 codists 阅读(27) 评论(0) 推荐(0)
摘要: 2023年8月编程人总共更新了17篇文章。 1.[2023年7月文章一览](https://www.cnblogs.com/codists/articles/17599311.html) 2.[Programming Abstractions in C阅读笔记:p72-p75](https://ww 阅读全文
posted @ 2023-09-02 11:19 codists 阅读(26) 评论(0) 推荐(0)
摘要: 《Programming Abstractions In C》学习第55天,p139-p140,总结如下: # 一、技术总结 ## 1.文件I/O操作 文件I/O操作可以分为一下这些步骤: (1)声明文件指针对象。 ```c File *infile; ``` (2)打开文件 fopen()。打开文 阅读全文
posted @ 2023-08-31 08:34 codists 阅读(35) 评论(0) 推荐(0)
摘要: 《Programming Abstractions In C》学习第54天,p138,总结如下: # 一、技术总结 ## 1.stdio.h 3.4小节介绍“The standard I/O library”,涉及I/O操作最常用的接口是stdio.h,我们经常用到里面的printf函数。 ## 2 阅读全文
posted @ 2023-08-30 06:55 codists 阅读(14) 评论(0) 推荐(0)
摘要: 《Programming Abstractions In C》学习第53天,p132-p137,3.2小节“strings”总结如下: # 一、技术总结 3.2小节介绍了字符串的用法: 1.C语言是没有字符串(string)这种数据类型的,但是实际的场景中又很需要这种数据类型,那怎么表示字符串呢?有 阅读全文
posted @ 2023-08-29 08:49 codists 阅读(31) 评论(0) 推荐(0)
摘要: 《Programming Abstractions In C》学习第52天,p130-p131,总结如下: # 一、技术总结 ## 1. pig latin game 通过pig latin game掌握字符复制,指针遍历等操作。 ```c /* * 输入:字符串,这里采用书中坐着自定义的getli 阅读全文
posted @ 2023-08-28 08:50 codists 阅读(27) 评论(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 阅读(27) 评论(0) 推荐(0)
摘要: 《Programming Abstractions In C》学习第50天,p123-p126,总结如下: # 一、技术总结 ## 1.notaion 这也是一个在计算机相关书籍中出现的词,但有时却不是那么好理解,因为它可以指代很多对象,这里做一个记录。示例:p124。 In C, you can 阅读全文
posted @ 2023-08-21 22:36 codists 阅读(13) 评论(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 阅读(12) 评论(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 阅读(25) 评论(0) 推荐(0)
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 34 下一页