answersLogoWhite

0


Best Answer

C is a structured programming language. PHP, COBOL is also a structured programming language. These languages follow a top down approach.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

The examples of structured programming are ALGOL,PASCAL,PL/I...

This structured programming concept later on emerged as Object Oriented Programming...

This answer is:
User Avatar

User Avatar

Wiki User

15y ago

Good old BASIC:

10 PRINT "Hello"

20 GOTO 10

This answer is:
User Avatar

User Avatar

Wiki User

15y ago

ALGOL, Pascal, Pl/I, C , Ada

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What Example of structured programming?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is structured programming an OOP principle?

No. Structured programming came before object-oriented programming. Most OOP languages make use of structured programming, but only because they were already using structured principals, not because they now use OOP principals.


What are the disadvantages of object oriented programming over structured programming?

actually oop concept have some disadvantage when compared to structured programming


What are the limitation of structured programming?

By itself, structured programming does not support the notion of a function call. This is achieved through an extension of structured programming known as procedural programming. Object-oriented programming extends procedural programming such that data and the functions that operate upon the data can be encapsulated within an object.


What are the Structured programming languages?

In Structured Programming also known as Modular Programming Each Method(function) is structured itself. Such logical structure make programming more efficient and easy to understand. it employs Top-Down design model.


What has the author Keith LaBudde written?

Keith LaBudde has written: 'Structured programming concepts' -- subject(s): Structured programming


What has the author R Schneyer written?

R. Schneyer has written: 'Modern structured programming' -- subject(s): Structured programming


What has the author K A Arjani written?

K. A. Arjani has written: 'Structured programming flow charts' -- subject(s): Structured programming


What has the author Wade Ellis written?

Wade Ellis has written: 'Structured programming using Turbo BASIC' -- subject(s): BASIC (Computer program language), Structured programming, Turbo BASIC (Computer file) 'Structured programming using True BASIC' -- subject(s): Structured programming, True BASIC (Computer program language)


What is modular structured programming?

when you divide a long program or problem into small small understandable parts that means modular structured programming. In the consequences of c programming modular structured programming called to divide a long program into small small, and easy to understand functions. Garcha UFV, Canada


What is the difference between structured oriented programming procedure and oriented programming?

LOTTA


Why goto is not a good structured programming style?

goto is a statement, not a programming style.


Can structured programs be inheritance?

Structured programming is not at all related to inheritance. Structured programming is a paradigm that allows, amongst many other things, one to write code in a manner that nests decisions and processing in a logical, "structured" way. Inheritance, on the other hand, is an aspect of Object Oriented Design and Programming.