
13 C语言 英语
文章平均质量分 85
C语言 英语版学习
yangbocsu
少年一贯快马扬帆,道阻且长不转弯;
要盛大,要绚烂,要哗然;
要用理想的泰坦尼克,去撞现实的冰川;
要当烧赤壁的风,而非借鉴草船;
要为了一片海,就肯翻万山。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Structures
By yangbo 2021/04/13To 涛:我只是标注了一些你可能不认识的单词,也没有必要很详细地阅读,里面的生词也没有必要都记下来,就是闲暇的时候过个几遍,下次这些单词再次出现时,能知道它是什么意思就好。例如它们出现了好几次了,你知道什么意思吗?,不一定要会拼写variables :syntax :in the following manner:Define definitionAssumeStructures 结构体C structures are s..原创 2021-04-13 09:59:48 · 662 阅读 · 0 评论 -
Pointers
By yangbo 2021/04/12Pointers 指针Pointers are also variables(变量)and play a very important role in C programming language. They are used for several(几个)reasons, such as: Strings 字符串 Dynamic memory allocation 动态内存分配 Sending function ar...原创 2021-04-12 14:02:35 · 532 阅读 · 0 评论 -
Static
Staticstaticis a keyword(关键)in the C programming language. It can be used with variables and functions.What is a static variable? 什么是静态变量?By default(默认), variables are local to the scope in which they are defined. Variables can be declared as sta...原创 2021-04-11 13:40:50 · 200 阅读 · 0 评论 -
Functions
Functions 函数C functions are simple, but because of how C works, the power of functions is a bit(有点) limited(受到限制). Functions receive either a fixed or variable amount of arguments.either...or...(要么...要么...) Functions can only return one value, ..原创 2021-04-10 13:40:38 · 507 阅读 · 0 评论 -
While loops
While loops while 循环While loops are similar to for loops, but have less functionality(功能比较少). A while loop continues executing(继续执行) the while block as long as(只要) the condition in the while remains true(保持真). For example, the following code will execut.原创 2021-04-09 09:03:13 · 447 阅读 · 0 评论 -
For loops
For loops for循环For loops in C are straightforward(简单的). They supply(提供)the ability to create a loop - a code block that runs multiple times(多次). For loops require an iterator variable(迭代变量), usually notated(标记)asi.For loops give the following funct...原创 2021-04-08 12:24:57 · 301 阅读 · 0 评论 -
Strings
Strings 字符串Defining strings 定义字符串Strings in C are actually arrays of characters(字符数组). Although using pointers(指针)in C is an advanced(高级的)subject, fully explained(详细说明) later on, we will use pointers to a character array to define simple strings, i...原创 2021-04-06 14:35:13 · 469 阅读 · 0 评论 -
Conditions
Conditions 条件Decision Making决策、做决定In life, we all have to make decisions. In order to make a decision we weigh out(权衡) our options and so do our programs(倒装句,我们的程序也是如此).Here is the general form(一般形式)of the decision making structures(决策结构) found(创建...原创 2021-04-06 13:57:12 · 413 阅读 · 0 评论 -
Multidimensional Arrays
Multidimensional Arrays 多维数组In the previous tutorials(先前的教程) onArrays, we covered(覆盖,此处理解为讨论), well, arrays and how they work. The arrays we looked at were all one-dimensional(一维), but C can create and use multi-dimensional arrays. Here is the general ..原创 2021-04-03 18:54:18 · 971 阅读 · 0 评论 -
Arrays
Arrays (数组)Arrays are special variables which can hold more than one value under the same variable name, organised with an index. Arrays are defined using a very straightforward syntax(不复杂的语法):/* defines an array of 10 integers */ //定义一个由10个整数的数组int原创 2021-04-02 14:04:47 · 256 阅读 · 0 评论 -
Variables and Types 变量和类型
Data types 数据类型C has several types of variables, but there are a few(一些) basic types: Integers (整型)- whole numbers which can be either positive(正数)or negative(负数)(要么...要么). Defined usingchar,int,short,longorlonglong. Unsigned integer...原创 2021-04-01 13:01:19 · 648 阅读 · 0 评论 -
Hello, World!
Hello, World!Introduction 引言The C programming language is a general purpose(通用) programming language, which relates closely(密切地)to the way machines work. Understanding how computer memory works(计算机内存的工作原理)is an important aspect(方面)of the C programmi...原创 2021-03-31 18:16:06 · 375 阅读 · 1 评论 -
Welcome Learn-C.org
WelcomeWelcome to the learn-c.org free interactive(免费交互式) C tutorial(教程).Whether you are an experienced(有经验的)programmer(程序员) or not(不管是否), this website(网站) is intended for(为。。打算的) everyone who wishes to learn the C programming language.There is no n.原创 2021-03-31 17:09:35 · 256 阅读 · 1 评论