In a structure oriented language a program is divided into small programs called ________.
-
objects
-
classes
-
Union
-
functions
-
operators
D
Correct answer
Explanation
In a structure oriented language a program is divided into small programs called functions.
C functions are basic building blocks in a program. All C programs are written using functions to improve reusability, understandability and to keep track on them. A large C program is divided into basic building blocks called C function. C function contains set of instructions enclosed by “{}” which performs specific operation in a C program. Actually, Collection of these functions creates a C program.