What does a coder use when they make a program from scratch?

852 views

I don’t understand what the starting point is. Do they just open a word document and start creating lines of code or is there some type of program that’s specifically used?

In: 1291

25 Answers

Anonymous 0 Comments

A compiler turns lines of code (written not in Word, but often in a text editor with better styling for code) into an executable program.

A compiler is often written in another language, and ran through that language’s compiler.

First compiler was (roughly) hand-written machine code.

So it’s compilers all the way down.

You are viewing 1 out of 25 answers, click here to view all answers.