what do structure language means?

Answer Posted / salim

structured programming language enforces logical structure
of the program being written to make it more easy to
understand and modify.It deploys top-down design model.
A defined function or a set of similar functions are coded
in separate module or submodule which means that code can
be loaded in memory more efficiently and modules can be
used in other programs more efficiently.

Structured languages support several looping constructs
such as for,while,do-while etc.
In structured language the use of goto is either prohibited
or discouraged and is not the common form of program
control.

A structured language allows you to place statements
anywhere on a line and doesn't require a strict field
concept.

Eg Pascal,Ada,C++,C,Java,Modula-2.

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the types of c language?

764


What are the types of data types and explain?

847


Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings

2454


Explain what is #line used for?

787


What is the purpose of clrscr () printf () and getch ()?

780


What is floating point constants?

879


Compare array data type to pointer data type

799


Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]

823


What do you mean by invalid pointer arithmetic?

819


Why main function is special give two reasons?

1197


Is array name a pointer?

797


Write a program to find the biggest number of three numbers in c?

797


Why do we use static in c?

809


What is a loop?

787


Should a function contain a return statement if it does not return a value?

805