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
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
What is a node in c?
What are the 32 keywords in c?
What are data structures in c and how to use them?
What is the purpose of void pointer?
What are conditional operators in C?
Explain what are multibyte characters?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Explain bitwise shift operators?
What is an lvalue?
In c language can we compile a program without main() function?
Combinations of fibanocci prime series
Write a program to swap two numbers without using third variable?
What are lookup tables in c?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)