The Best Paradigm
In programming like any other art has different categories i.e. paradigms. There are many like functional, object oriented, event driven, procedural etc. All this paradigms have a cult like following among the people who use them. This is mostly due to the paradigms being linked to the programming languages they use. In today's blog we are going to look at the functional, object oriented and procedural paradigms. There other paradigms like event driven, declarative, structured query language paradigm etc. 1. Procedural paradigm Being a newbie in programming, the first language I learnt was C. This is in the procedural paradigm as it is divided into functions. The main function and other functions. In procedural paradigm code is divided into functions (also called routines or sub-routines in other languages and should not be confused with functional programming paradigm). The most popular procedural language in this paradigm is C. There are other languages like python, ...