Chemistry, asked by santhoshnavis7, 9 months ago

which one of the following is a measure of the testing difficulty of a program ? a. Number of statements in the program , b. number of decision statement in the program , c. Complexity of the arithemetic expression used in the progam, d. Time complexity of the program






actually this is not my question....my question is I need a girlfriend....so will you please be my girl friend?....im so cute and just studying....u can't be my girlfriend means atleast be my friend...the question is containing points.......​

Answers

Answered by ashwanikumargupta223
0

Answer:

In a 'C' program are executed sequentially. This happens when there is no condition around the statements. If you put some condition for a block of statements the flow of execution might change based on the result evaluated by the condition. This process is referred to as decision making in 'C.' The decision-making statements are also called as control statements.

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.

Similar questions