what do structure language means?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / sindhu
the question is not rightly framed..grammar mistake..
| Is This Answer Correct ? | 1 Yes | 4 No |
What is modifier & how many types of modifiers available in c?
What should malloc() do?
Write a C program to perform some of the operation which can be performed using Single linked list
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
`write a program to display the recomended action depends on a color of trafic light using nested if statments
how many error occurs in C language ?
Give the Output : * * * * * * * * * *
What is the difference between GETS();AND SCANF();
main difference between c and c++ language
How can I list all of the predefined identifiers?
the data type used for unlimited value in c and how to do this program
How can I invoke another program from within a C program?