This website completely moved to new platform. For latest content, visit www.programmingposts.com

Search this Site

9 Oct 2012

C PROGRAM TO PRINT LOVE SYMBOL


/** C PROGRAM TO PRINT LOVE SYMBOL **/
#include<stdio.h>
main()
{
  int a=3,i;
  for(i=0;i<250;i++) //prints love symbol 250 times
     printf("%c",a);
}

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 writhing the following code.

printf(" %c ",3);

for c to print smiling face click here

Output:


For C# Program: c# program to print love symbol



No comments:

Post a Comment

Thanks for your comments.
-Sameer