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 check palindrome number in c programming?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
Is an array parameter is always "by reference" ?
Define macros.
Explain why C language is procedural?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
What does the characters “r” and “w” mean when writing programs that will make use of files?
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
What is character set?
What is pointers in c with example?
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures