What is procedural programming language | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is procedural programming language

ppl

12th Aug 2018, 5:02 AM
leonzo estrella
leonzo estrella - avatar
2 Answers
+ 1
A procedural programming language is such a language which simply executes code along the file. It does not have features like classes, objects, inheritance, etc. You simply executes code line by line. https://en.m.wikipedia.org/wiki/Procedural_programming For example, C is a procedural language.
12th Aug 2018, 5:18 AM
Vedant Bang
Vedant Bang - avatar
0
It's where parts of the code are separated into separate procedures. There is the main function and then supporting functions which are called by the main function. They are steps for the program to procedurally follow. It's basically taking the classes out of an OOPL, but leaving all the functions in an organized manner. If you really want to understand it then learn something like C or even old school BASIC
12th Aug 2018, 5:33 AM
Dominic Nicholas
Dominic Nicholas - avatar