Procedure programing
- procedure programing,the given problem is devided into number of small sub problems depending on the functionality
- then each sub problem is written as a procedure called function or method

- the above problem has one main function and 7 function
- the varible declared outside the main function are called global varible
Features of procedure programing
- large problem are divided into smaller problems know as function or procedure
- it uses top-down programing technique
- data moves freely from one function to another
- the variables declared out side the function are called global varible and can be shared by all function
- data hiding is not posssible
- it is difficult to add new functions and data structures
No comments