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 |
write a program to display all prime numbers
is compiler do read the data line by line or not. ??
6 Answers LG Soft, Satyam, Tech Mahindra,
Write a program to print the prime numbers from 1 to 100?
explain what are actual arguments?
What are the types of pointers in c?
Is c procedural or object oriented?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
write a program to print largest number of each row of a 2D array
Write a program in C to convert date displayed in gregorian to julian date
What is bss in c?
Explain b+ tree?
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a