search
HomeBackend DevelopmentC#.Net TutorialWhat is the difference between assembly language and c language?
What is the difference between assembly language and c language?Apr 27, 2020 pm 01:57 PM
c languageAssembly language

What is the difference between assembly language and c language? The following article will introduce to you the difference between assembly language and c language. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

What is the difference between assembly language and c language?

What is c language:

C language is a general computer programming language and is widely used. The design goal of the C language is to provide a programming language that can be easily compiled, handle low-level memory, generate a small amount of machine code, and can run without any runtime environment support; although the C language provides many low-level processing functions, However, it still maintains good cross-platform characteristics. C language programs written in a standard specification can be compiled on many computer platforms, including some embedded processors (single chip microcomputer or MCU) and supercomputers and other operating platforms.

What is assembly language:

Assembly language (assembly language) is a programming language used for electronic computers, microprocessors, microcontrollers or other programmable devices. Low-level language, also known as symbolic language. In assembly language, mnemonics are used to replace the opcodes of machine instructions, and address symbols (Symbol) or labels are used to replace the addresses of instructions or operands. In different devices, assembly language corresponds to different machine language instruction sets, which are converted into machine instructions through the assembly process. Generally speaking, a specific assembly language and a specific machine language instruction set have a one-to-one correspondence and cannot be directly transplanted between different platforms.

Many assemblers provide additional support mechanisms for program development, assembly control, and auxiliary debugging. Some assembly language programming tools often provide macros, which are also called macro assemblers.

Assembly language is not as widely used in programming as most other programming languages. In today's practical applications, it is usually used in low-level, hardware operations and demanding program optimization situations. Assembly language is required for drivers, embedded operating systems, and real-time running programs.

The difference between C language and assembly language:

Assembly language: high efficiency, stronger controllability of hardware, small size, difficult to maintain, and portability Very poor

C language: relatively low efficiency, poor hardware controllability, large object code size, easy to maintain, and good portability

Assembly language has high operating efficiency Reasons:

1. Assembly language is essentially a mnemonic for machine language. The CPU can only run the instruction set it supports, and each instruction in these instruction sets is a sequence of binary numbers, that is, an ordered combination of "0" and "1"; The combination is not convenient for programmers to remember, so there are mnemonics such as "MOV A 0x40". Therefore, compiling assembly language into machine language executable by the CPU only requires a translation action. After writing a program in C language, a compiler needs to be used to compile the C language into machine language corresponding to the corresponding CPU instruction set. Assembly language and machine language have a one-to-one correspondence. But what about C language? Of course it's not such a good thing. The syntax of C language is fixed. When a program written in C language is compiled into machine language instructions that the CPU can understand, there is no one-to-one correspondence. Therefore, compilation rules are required, so the running efficiency is lower. It can also be said that C language is a language for programmers, while assembly language is a language directly for the CPU.

2. Assembly is a language that directly faces the CPU. As long as it is within the scope supported by the instruction set, assembly language can directly and flexibly manage every byte including special function registers, general registers, and storage units. , even every bit. The C language is also very powerful in its use and management of memory, but after all, it is still subject to syntax. To give the simplest example, there is no variable type corresponding to three bytes or five bytes in C language, either int type or long type, so each application must be a fixed number of bytes, which will inevitably cause memory usage. waste. Most assembly languages ​​do not have such syntax at all. With the help of pseudo-instructions (which actually only improve readability), assembly language programs can use variables of any number of bytes. Of course, processing them is much more troublesome than C language. In the end, it is still spliced ​​byte by byte, but writing a program in C language is easy. Don't worry about it, the compiler will eventually take care of it. The price of ease is waste. Inefficient memory usage will also affect the overall efficiency of the entire program. ??

Different applicable occasions of C language and assembly

1: If there are only simpler logical operations, logical algorithms, and simple operations, using assembly will result in more accurate results code, but it can also be done in c.

2: If there are complex operations, floating point operations, non-linear equations, etc., assembly is very difficult. As a high-level language, C language is concise and compact, and uses flexible syntax mechanisms to write complex programs. Much easier.

3: The assembly syntax of each processor is mostly different. If you only use assembly, the scalability and portability are very poor. Using C will be much better.

4: To initialize the hardware, use assembly language.

For more related knowledge, please pay attention to PHP Chinese website! !

The above is the detailed content of What is the difference between assembly language and c language?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
(超详细)VScode中配置C语言环境的方法(超详细)VScode中配置C语言环境的方法Dec 05, 2022 pm 07:05 PM

VScode中怎么配置C语言环境?下面本篇文章给大家介绍一下VScode配置C语言环境的方法(超详细),希望对大家有所帮助!

c语言中node是什么意思c语言中node是什么意思Jul 06, 2022 pm 03:51 PM

在C语言中,node是用于定义链表结点的名称,通常在数据结构中用作结点的类型名,语法为“struct Node{...};”;结构和类在定义出名称以后,直接用该名称就可以定义对象,C语言中还存在“Node * a”和“Node* &a”。

c语言怎么将数字转换成字符串c语言怎么将数字转换成字符串Jan 04, 2023 pm 03:20 PM

c语言将数字转换成字符串的方法:1、ascii码操作,在原数字的基础上加“0x30”,语法“数字+0x30”,会存储数字对应的字符ascii码;2、使用itoa(),可以把整型数转换成字符串,语法“itoa(number1,string,数字);”;3、使用sprintf(),可以能够根据指定的需求,格式化内容,存储至指针指向的字符串。

c语言开根号运算符是什么c语言开根号运算符是什么Mar 06, 2023 pm 02:39 PM

在c语言中,没有开根号运算符,开根号使用的是内置函数“sqrt()”,使用语法“sqrt(数值x)”;例如“sqrt(4)”,就是对4进行平方根运算,结果为2。sqrt()是c语言内置的开根号运算函数,其运算结果是函数变量的算术平方根;该函数既不能运算负数值,也不能输出虚数结果。

机器语言、汇编语言、高级语言各有什么特点机器语言、汇编语言、高级语言各有什么特点Apr 22, 2021 pm 04:00 PM

机器语言的特点:难学、难懂、难理解;无通用性;需要人为分配内存;运行速度最快。汇编语言的特点:程序的执行效率非常高、占用存储空间小、运行速度快;缺乏通用性,程序不易移植。高级语言的特点:容易、有一定通用性、计算机不能直接识别和执行。

c语言数组如何初始化c语言数组如何初始化Jan 04, 2023 pm 03:36 PM

C语言数组初始化的三种方式:1、在定义时直接赋值,语法“数据类型 arrayName[index] = {值};”;2、利用for循环初始化,语法“for (int i=0;i<3;i++) {arr[i] = i;}”;3、使用memset()函数初始化,语法“memset(arr, 0, sizeof(int) * 3)”。

c语言中源文件编译后生成什么文件c语言中源文件编译后生成什么文件Nov 23, 2022 pm 07:44 PM

c语言编译后生成“.OBJ”的二进制文件(目标文件)。在C语言中,源程序(.c文件)经过编译程序编译之后,会生成一个后缀为“.OBJ”的二进制文件(称为目标文件);最后还要由称为“连接程序”(Link)的软件,把此“.OBJ”文件与c语言提供的各种库函数连接在一起,生成一个后缀“.EXE”的可执行文件。

c语言怎么计算n的阶乘c语言怎么计算n的阶乘Jan 04, 2023 pm 03:18 PM

c语言计算n的阶乘的方法:1、通过for循环计算阶乘,代码如“for (i = 1; i <= n; i++){fact *= i;}”;2、通过while循环计算阶乘,代码如“while (i <= n){fact *= i;i++;}”;3、通过递归方式计算阶乘,代码如“ int Fact(int n){int res = n;if (n > 1)res...”。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),