procedurell programmering
Sign in to saveproceduremæssig programmering
Described at
Procedural Programming — Definition & Overview • DeepSource
Procedural programming is a programming paradigm built around the idea that programs are sequences of instructions to be executed.
deepsource.com →Procedural programming is a programming paradigm built around the idea that programs are sequences of instructions to be executed. They focus heavily on splitting up programs into named sets of instructions called procedures, analogous to functions. A procedure can store local data that is not accessible from outside the procedure's scope and can also access and modify global data variables. Some of the earliest procedural programming languages were Fortran and ALGOL . Ideas developed in ALGOL are very much relevant and prevalent in modern-day programming languages. Programs are composed of sequences of instructions. Minimal abstraction is present between the code and the machine. Procedures, which are logical blocks consisting of groups of instructions, can be invoked from other places in the code. A procedure can accept arguments and return values to the caller. Additionally, functions can access and modify variables in the global scope. Procedural languages follow structured programming practices and use block-based control flow rather than goto commands.
Excerpt from a page describing this subject · 2,855 chars · not written by Vinony
Article · Svenska
Med procedurell programmering menas i programmeringssammanhang att källkoden skrivs med användande av subrutiner. Här existerar inga klasser såsom i objektorienterad programmering utan i stället används funktioner, strukturer och primitiva datatyper. Ett känt procedurellt språk är C. Procedurell programmering innebär inte nödvändigtvis ett oordnat programmeringssätt. Själva programmet kan avgränsas av moduler eller enheter och därmed framtvinga den önskade ordningen. Ofta tillämpar man strukturerad programmering.
Abstract from DBpedia / Wikipedia · CC BY-SA