What is the explanation for modular programming in C language?
BrindhaPrathaban Answered question June 30, 2023
Modular programming consists of separating implementation from interface and hiding information in the implementation. In C this is achieved by placing the interface definition in a header file and the implementation in a source file. Disciplined use of static is used to hide implementation details.
BrindhaPrathaban Answered question June 30, 2023
