what is Structural oriented language?
give some example of this language.....?



what is Structural oriented language? give some example of this language.....?..

Answer / vignesh1988i

structure oriented language means following a specific format for writing the program.... C++ is not structured oriented since we can declare the variables wherever we like before we use those ones.....
C,COBOL, FOXPRO are some of the structured oriented languages...

thank u

Is This Answer Correct ?    3 Yes 3 No

Post New Answer

More C Interview Questions

Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates

3 Answers  


what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }

1 Answers  


what is the benefit of c30

2 Answers  


How can I insert or delete a line (or record) in the middle of a file?

0 Answers  


how to swap 4 number without using temporary number?

2 Answers  






Is it valid to address one element beyond the end of an array?

0 Answers  


Explain indirection?

0 Answers  


Why can't we initialise member variable of a strucutre

1 Answers  


can we write a c program with out using main

3 Answers  


prog for 1st five prime numbers in 2^x - 1

0 Answers  


Explain how can I avoid the abort, retry, fail messages?

0 Answers  


#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }

12 Answers   Capital IQ, Sasken,


Categories