Usman This eg will make the concept easier using System; using System.Collections.Generic; using System.Text;
namespace ConsoleApplication74
{
class Program
{
static void Main(string[] args)
{
Console.Write("This is First Line \r and This is Second");
Console.ReadKey();
}
}
}
According to you the output should be
This is First Line
and This is Second
But the output of the prog is
and This is Second
Why is this happenings
