what is Structural oriented language?
give some example of this language.....?
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 |
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }
to get a line of text and count the number of vowels in it
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
Can main () be called recursively?
how to convert an char array to decimal array
program to find the second largest word in a paragraph amongst all words that repeat more thn twice
What does void main () mean?
What is a program flowchart and how does it help in writing a program?
What is struct node in c?