while and do while in c# with real time example
Example: while loop in c#
int i = 0;
while (i < 10)
{
Console.WriteLine("Value of i: {0}", i);
i++;
}
int i = 0;
while (i < 10)
{
Console.WriteLine("Value of i: {0}", i);
i++;
}