c# program to print love symbol
original postusing System; namespace LoveSymbol { class Program { static void Main(string[] args) { int a = 3, i; for (i = 0; i < 250; i++) //prints love symbol 250 times Console.Write((char)a); //Console.Write((char)3); Console.ReadKey(); } } }
Explanation : most of the c# learners shock by seeing this.Actually here we are printing the ASCII value of 3 . Which gives a love symbol.
you can also print directly by writing the following code.
Console.Write((char)3);
for c program to print love symbol click here
Output:
wow ur great sameer .............!
ReplyDelete