Answer: C ontinue Statement : The continue statement skips some statements inside the loop. The continue statement is used with decision making statement such as if...else.
Ans wer : The process in which a function in turn calls itself is called recursion. And the function is called recursive function. When a called function in turn calls another function again and again the process of this calling is called recursion.
Create an equivalent code segment using else ... if ladder: Subject’s Mark Grade marks> 79 A marks> 69 B marks> 59 C marks> 49 D marks> 39 E m arks <=39 F Answer: #include<stdio.h> #include<conio.h> void main(){ clrscr();