Multiple choice

In a structure oriented language a program is divided into small programs called ________.

  1. objects

  2. classes

  3. Union

  4. functions

  5. operators

Reveal answer Fill a bubble to check yourself
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.