what is Structural oriented language?
give some example of this language.....?
Answer Posted / 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 View All Answers
What does %d do in c?
what is a function method?give example?
What is main return c?
Are pointers integers in c?
What are header files in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
Why is a semicolon (;) put at the end of every program statement?
What is data type long in c?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
Tell us the use of fflush() function in c language?
What is static volatile in c?
c language interview questions & answer
How to write a code for reverse of string without using string functions?
What are the three constants used in c?