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
Why is void main used?
What is size of union in c?
What is the role of this pointer?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
Hai what is the different types of versions and their differences
What is the correct code to have following output in c using nested for loop?
Explain which function in c can be used to append a string to another string?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
How to define structures? ·
What is wild pointer in c?
What are bitwise shift operators in c programming?
Multiply an Integer Number by 2 Without Using Multiplication Operator
What is type qualifiers?
why programs in c are running with out #include
Explain what is the use of a semicolon (;) at the end of every program statement?