Monolithic and Modular Programming in C program | Coding classpoint
Monolithic Programming The program which contains a single function for the large program is called monolithic program…
Monolithic Programming The program which contains a single function for the large program is called monolithic program…
Recursion Function When function calls itself (inside function body) again and again then it is called as recursive fun…
Local, Global and Static variable Local variable: Variables that are defined with in a body of function or block. The l…
Call by value and call by reference There are two way through which we can pass the arguments to the function such as c…
Function with argument and return value Here the calling function has the argument to pass to the called function and t…
Function with argument but no return value Here the function have argument so the calling function send data to the cal…
Function with no argument but return value When a function has arguments, it receive any data from the calling function…
Function with no argument & no return value In the program, we have function named fun1 which has no argument and…