Computer Science, asked by ronjumon, 4 months ago

which statement is form of the if statement in C

Answers

Answered by sittus573
2

Answer:

The general form of if-else is as follows: if (test-expression) { True block of statements } Else { False block of statements } Statements; n this type of a construct, if the value of test-expression is true, then the true block of statements will be executed.

Similar questions