145k views
1 vote
In procedural programming, where does the flow of control usually route from the main function?

In procedural programming, the flow of control usually routes from the main function to the _________.

2 Answers

7 votes

Answer:

subfunctions

Step-by-step explanation:

i just took the test

User Craques
by
7.4k points
2 votes

Answer:

Subroutine or called function.

Step-by-step explanation:

Procedural programming is a programming techniques of creating modular divisions between lines of code, with a provision to call and run a block of code at any given instance in the program.

A program flow control breaks at will from the main function to a target defined function or subroutine, which returns a value back to the normal flow of the program. It uses conditional and loop statement to achieve its task.

User Isabella Almeida
by
8.0k points