what do structure language means?

Answers were Sorted based on User's Feedback



what do structure language means?..

Answer / ankith.v

we need to follow Syntax

Is This Answer Correct ?    13 Yes 1 No

what do structure language means?..

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

what do structure language means?..

Answer / sindhu

the question is not rightly framed..grammar mistake..

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More C Interview Questions

1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?

0 Answers   KPIT,


What’s the special use of UNIONS?

0 Answers   ADP,


how to TOGGLE Nth bit of variable in a MACRO

1 Answers   NDS,


if the address of a[1,1] and a[2,1] are 1000 and 1010 respectively and each occupies 2 bytes then the array has been stored in what order?

4 Answers   Amazon, Apple, Bata, Google, NASA,


How can you find out how much memory is available?

0 Answers  






what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1

1 Answers   IBM,


write a program to print calender using for loop.

1 Answers   HCL, TCS,


What is extern variable in c with example?

0 Answers  


What are the different types of endless loops?

0 Answers  


How can I call a function, given its name as a string?

4 Answers   ABC Telecom,


main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above

6 Answers  


Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.

0 Answers   TCS,


Categories