C语言简介

  • C is a programming language that lets us give a computer very specifio commands.
  • C语言是一种编程语言,它让我们可以给计算机非常特殊的命令
  • C was invented in 1972. It's one of the oldest languages to be used even today !
  • C是在1972年发明的。它是至今仍在使用的最古老的语言之一!
  • It is one of the **most widely used **programming languages in the world.
  • 它是世界上使用最广泛的编程语言之一。
  • It has influenced many popular languages, especially C++.
  • 它影响了许多流行的语言,尤其是c++。
  • But why do we still use such an old programming language?
  • 但为什么我们还在使用这么古老的编程语言呢?
  • Why not something newer and easier to understand, like Python?c++
  • 为什么不使用一些更新的、更容易理解的东西,比如Python呢?
  • let's find out !
  • 让我们找出答案。

C语言特点

C特点一:简单

Simple: C is a Structure based language i.e we can divide a big program into multiple parts, which makes it easy to write and understand.

简单:C是一种基于结构的语言。我们可以把一个大程序分成多个部分,这使它易于编写和理解。

C特点二:高效、快速

  • Efficient and Fast 高效、快速

    • Programs written in C are efficient and fast.
    • 用C写的程序效率高,速度快。
    • This is the most critical factor for usinq C over other lanquages.
    • 这是用C而不是其他语言最关键的因素。
    • C is considered to be "close to the computer," meaning we can program the computer to do precisely what we want.
    • C被认为是“接近计算机”的,这意味着我们可以对计算机编程,使其精确地做我们想做的事情。
    • To understand what this means, here is an analogy: Imagine you want your brother to buy you a cake from the store.
    • 为了理解这是什么意思,这里有一个类比:想象你想让你的兄弟从商店给你买一个蛋糕。
      • In Python, you would just use one line to say "Buy me a cake from the store."

      • 在Python中,你只需要用一行字来表示“从商店给我买个蛋糕”。

      • Your brother will go and come back in 5 hours because he went to a store very far to get the best cake available.

      • 你哥哥会在5个小时后回来,因为他去了一家很远的商店买最好的蛋糕

      • In C, we can tell your brother, "Get in the car, drive to the store around the block, buy the first cake you see, and drive immediately back", which will happen in 20 odd minutes.

      • 在C语言中,我们可以告诉你的兄弟,“上车,开车到附近街区的商店,买第一个蛋糕,然后马上开车回来”,这将在20多分钟内发生。

      • Of course , it won’t be the best cake . But it is much faster and is the exact cake that you wanted .

      • 当然,这不会是最好的蛋糕。但是它的速度要快得多,而且正是你想要的蛋糕

C特点三:可移植性

  • Portable : Programs written in C can be run on different types of machines with little or no modifications .
  • 可移植性:用C编写的程序可以在不同类型的机器上运行,只需很少的修改或不需要修改。

00 what is C Programming?C编程是什么?的更多相关文章

  1. Programming pearls 编程珠玑的题目

    Programming pearls 编程珠玑的题目 这段时间有空都在看编程珠玑,很经典的一本书,一边看一边用 python 做上面的题目,我做的都放到 github 上了 https://githu ...

  2. Language Oriented Programming:下一代编程样式 Part I (翻译)

    原文信息 原文地址 作者信息 Sergey Dmitriev JetBrains Sergey Dmitriev is the cofounder and CEO of JetBrains Inc., ...

  3. 03 Comments in C Programming C编程中的注释

    Comments 注释简介 Let's take a quick break from programming and talk about comments. Comments help progr ...

  4. Teaching yourself programming -一个编程爱好者的碎碎念

    多数时候,个人活动的展开都源于某个具体的动机.或许你是为了可以写点小工具,解决日常生活中的一些重复劳动:或许,你心怀梦想,梦想着某一天完成一款你心目中完美的游戏:又或许是,你内心憧憬电影里的hack, ...

  5. Structured Streaming Programming Guide结构化流编程指南

    目录 Overview Quick Example Programming Model Basic Concepts Handling Event-time and Late Data Fault T ...

  6. Java实战之03Spring-03Spring的核心之AOP(Aspect Oriented Programming 面向切面编程)

    三.Spring的核心之AOP(Aspect Oriented Programming 面向切面编程) 1.AOP概念及原理 1.1.什么是AOP OOP:Object Oriented Progra ...

  7. S2---深入.NET平台和C#编程的完美总结

    1.NET简单解说 l 面向对象提升 OOP(Object Oriented  Programming)面向对象编程 AOP:(Aspache  Oriented Programming):面向切面编 ...

  8. python面向对象编程

    面向对象编程,简称OOP, object oriented programming OOP编程的三大特性:封装,继承,多态 1. 封装 把功能的实现细节封装起来,不对外暴露.只留出入接口. 2. 继承 ...

  9. 首届Autodesk编程马拉松(Hackathon)开始报名啦 -- 6.14~15 上海

    欢迎报名参加Autodesk 首届编程马拉松 ( Hackathon ) 活动   首届Autodesk编程马拉松(Hackathon)活动即将在Autodesk公司中国研究院(上海)举办.本次编程马 ...

随机推荐

  1. vmware虚拟机Bridged(桥接模式)、NAT(网络地址转换模式)、Host-Only(仅主机模式)详解

    原文来自http://note.youdao.com/share/web/file.html?id=236896997b6ffbaa8e0d92eacd13abbf&type=note 我怕链 ...

  2. php验证当前是设备是电脑端还是手机端

    <?php // 验证设备为PC还是WAP $agent = $_SERVER['HTTP_USER_AGENT']; if(strpos($agent,"comFront" ...

  3. kotlin 作用域函数 : let、run、with、apply、 also、takeIf、takeUnless

    1.官方文档 英文: https://kotlinlang.org/docs/reference/scope-functions.html 中文: https://www.kotlincn.net/d ...

  4. Git在windows上的设置详解

    这几天在学习使用Git版本管理工具,发现期间的各种配置还是挺繁琐的,而且好多命令的确记不住,于是写个blog记录下来,方便以后查阅. 1. 首先到GitHub官网上下载最新的Git,然后装上,装的过程 ...

  5. HOOK SSDK

    HOOK SSDT主要代码 #pragma once #include <ntifs.h> /* * * * * * * * * * * * * * * * * * * * * * * * ...

  6. A+B in Hogwarts (20)(模拟)

    时间限制 1000 ms 内存限制 65536 KB 代码长度限制 100 KB 判断程序 Standard (来自 小小) 题目描述 If you are a fan of Harry Potter ...

  7. Broker的主从架构是怎么实现的?

    前言 上一篇文章我们一起聊了聊RocketMQ的NameServer的一些内部工作流程,了解了NameServer的部署和与Broker之间的联系,那么今天我们就来一起聊聊Broker的一些内部原理. ...

  8. 用 Shader 写个完美的波浪

    前言 皮皮最近接到了一个小需求: 美术小姐姐:皮皮皮皮,你能不能做奶茶? 我:??? 美术小姐姐:就是那种,奶茶的轮廓加上动态水波纹~

  9. uap设置gradle和jdk

  10. DNS 劫持/污染

    who is dns 劫持 or 污染? 对 劫持 和 污染 这两个名词的理解一直都很混淆,这里就简单的记录一下他俩到底有哪些本质上的区别吧~ DNS 劫持 DNS劫持 即: DNS Hijackin ...