Why do we say languages such as C are top-down while OOP languages like Java or C++ are bottom-up? Does this classification have any importance in software development?
C is structured language and the sequence of programs is from top to bottom. starting from the main method.
while OOP depends upon number of classes and objects. flow of program is not in top down approach in OOP