conditional branching statement in c language
Answers
Answered by
2
Explanation:
In 'C' programming conditional statements are possible with the help of the following two constructs:
1. If statement
2. If-else statement
It is also called as branching as a program decides which statement to execute based on the result of the evaluated condition.
Answered by
1
Answer:
you put some condition for a block of statements, the execution flow may change based on the result evaluated by the condition. This process is called decision making in 'C. ' It is also called as branching as a program decides which statement to execute based on the result of the evaluated condition
Similar questions