Do While Loop :-
coding :
protected void Page_Load(object sender, EventArgs e)
{
int n = 1;
do
{
Response.Write(n + "Welcome<br>");
n++;
}
while (n <= 15);
}
So This all are Basic of the C# Programming you can use according to your requirement
if you Like it Please Like , SHARE & COMMENTS
So This all are Basic of the C# Programming you can use according to your requirement
if you Like it Please Like , SHARE & COMMENTS
No comments:
Post a Comment