+ 11
We make program by programing language but how programing languages are made ??????
5 Respostas
+ 5
Maxi
C is a high level language
Kartik Nainwal
You basically transform your code, until you have a bunch of machine instructions, that consist of 1s and 0s such that your processors circuits understand it.
Usually the chain looks like this:
> Programming language
> Byte Code
> Assembler
> Machine Instructions
Of course this differs for different languages
Interpreters are a whole other world, because you don't actually compile stuff, but instead you call precompiled code at runtime.
+ 4
Using other programming languages or assember or even native machine language.
+ 4
They use other programming language
With assemblers and compilers
Example python was written in C
+ 4
A programming language is written with a low level programming language (like C and assembler) and a programming language have a compiler (or interpreter), that compiler was written to translate the language to machine language. The most difficult part is to make the compiler.