Answer Posted / vignesh1988i
C is a structured language .....
proof:
there are certain rules to be followed for writing C programs
that is: 1) we must declare the variables used in the program after the main function itself. 2) after the variable declaration only we must enter the clrscr() option if we want.. 3) C follows only TOP to BOTTOM approach 4) all possible codes are been put as a subroutines or functions for every time usage
this proves C is a Structured language...
thank u
Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What is conio h in c?
What is the maximum length of an identifier?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
Why we use break in c?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
What are different types of variables in c?
Write a code to generate a series where the next element is the sum of last k terms.
What is the difference between union and structure in c?
Is it fine to write void main () or main () in c?
Explain what is wrong with this program statement? Void = 10;
What are the types of data types and explain?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
How many data structures are there in c?
Do variables need to be initialized?
What does void main return?