whether itis a structured language?
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 |
What is dynamic dispatch in c++?
What is structure packing in c?
Where does the name "C" come from, anyway?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
What are the 5 organizational structures?
What does calloc stand for?
What is the difference between break and continue?
1. Can we use the for loop this way? for(;i>5;) 2. What is the use of pointers? 3. what is array of pointer? 4. What is the difference between file and database? 5. Define data structure?
main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }
4 Answers Vector, Wipro, Zoho,
What ios diff. Between %e & %f?
How would you sort a linked list?
Tell us something about keyword 'auto'.