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
What are the types of c language?
What are the types of data types and explain?
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
Explain what is #line used for?
What is the purpose of clrscr () printf () and getch ()?
What is floating point constants?
Compare array data type to pointer data type
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What do you mean by invalid pointer arithmetic?
Why main function is special give two reasons?
Is array name a pointer?
Write a program to find the biggest number of three numbers in c?
Why do we use static in c?
What is a loop?
Should a function contain a return statement if it does not return a value?