《Programming Abstractions In C》阅读笔记p69-p71

今日完成《Programming Abstractions In C》阅读P69-p71。

一、技术总结

涉及到的技术知识点有"symbolic constant","Array declaration","Array selection"。

c 复制代码
#include <stdio.h>
#define  NJudges 5

int main(int argc, char const *argv[])
{
    // Array declaration p69: type name[size];
    double scores[NJudges]; // 为了方便后续修改,所以数组的大小声明为symbolic constant

    // Array selection p70: array[index]
    scores[0] = 9.2;
    scores[0] = 9.9;
    scores[0] = 9.7;
    scores[0] = 9.0;
    scores[0] = 9.5;

    return 0;
}

二、英语总结

1、 pictorially

pictorial > pictorially:pictorius(of a painter) + -al(of, like, related to pertain to)。所以,pictorially的意思是in a way that related to pictures or photographs(图像化地,以绘画的方式)。

2、 gymnastics

phicical exercise that increase th body's strength, balance and ability to move gracefully(体操)。

3、 figure skating

a type of skating that involves circular patterns and often includes jumps(花样滑冰)。

4、 effective size

effective 在这里的意思是:in fact,所以 effective size的意思是"实际大小","有效大小"。

参考资料:英语词根解析:Etymonline - Online Etymology Dictionary

欢迎搜索及关注:编程人

相关推荐
MUTA️4 分钟前
RT-DETR学习笔记(2)
人工智能·笔记·深度学习·学习·机器学习·计算机视觉
codists26 分钟前
《计算机组成及汇编语言原理》阅读笔记:p82-p85
笔记
ladymorgana29 分钟前
【运维笔记】windows 11 中提示:无法成功完成操作,因为文件包含病毒或潜在的垃圾软件。
运维·windows·笔记
oneouto1 小时前
selenium学习笔记(一)
笔记·学习·selenium
刚学HTML1 小时前
leetcode 05 回文字符串
算法·leetcode
stm 学习ing2 小时前
HDLBits训练5
c语言·fpga开发·fpga·eda·hdlbits·pld·hdl语言
AC使者2 小时前
#B1630. 数字走向4
算法
冠位观测者2 小时前
【Leetcode 每日一题】2545. 根据第 K 场考试的分数排序
数据结构·算法·leetcode
古希腊掌管学习的神3 小时前
[搜广推]王树森推荐系统笔记——曝光过滤 & Bloom Filter
算法·推荐算法
qystca3 小时前
洛谷 P1706 全排列问题 C语言
算法