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 |
Are there any problems with performing mathematical operations on different variable types?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
write a c programme for add of two numbers with out use of arthematic operators
Explain the difference between ++u and u++?
Difference between strcpy() and memcpy() function?
I came across some code that puts a (void) cast before each call to printf. Why?
What will happen when freeing memory twice
why TCS selected more student in the software field from all institution.
What does the message "warning: macro replacement within a string literal" mean?
What are # preprocessor operator in c?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
what's the return value of malloc()