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

840 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

Use a text editor. Emacs, Brief, Vi, etc. to create a file in the language of choice (C, Fortran, Basic, assembly language). Then compile your file with the appropriate executable, and if it compiles, run it. If not, edit some more. Edit, compile, edit, compile, … repeat until no errors, run, go back and edit, compile,….

Old school programs that are the underpinnings of operating systems, compilers, etc. were done this way. Then at some point you use that method to write a GUI, and the more advanced languages and environments, and go up from there.

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