Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

What is the difference between procedural and structural language?

0
Posted

What is the difference between procedural and structural language?

0

Programming language? In short – procedural languages view problem solutions as “what steps do I take to solve this problem?” They tend to be monolithic. It’s the approach pretty much everyone takes when they first start to program, but it’s an approach that doesn’t lend itself to complex programs nor to multiple programmers working on the same problem. Structured languages break things down a bit more. They view problem solutions as a set of tasks, each of which is necessary to the problem solution. The program is then written as solutions to each of the tasks, and those solutions are put together to make the final program. It lends itself to more complicated programs because no one has to keep the entire program in his/her head all at once, and it allows for multiple programmers to work on it at once, each on an individual task. Pascal was the “teaching language” for structured programming.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123