Computer Science, asked by nilanjandasnil5231, 1 year ago

What is sequential execution?

Answers

Answered by yashwanth2425
1

Programs start by executing the first statement and continue by executing statements in sequence


Answered by aqibkincsem
2

Sequential execution is the process in C programming which helps to execute the commands given in the program sequentially.

It happens when there has no command been given about looping.

If conditional statements like 'If', 'while', 'do while' are given, then the sequential execution of the program gets hindered, and the execution becomes conditional.

Similar questions