Saturday, October 4, 2014

Birthday Wishing Programme

Today I will share you a simple and enjoyable programme. It is Birth day wishing programme.

Supose, today is your friend's birthday.  Now you send this programme to your friend and tell him to run it in any.  C compiler. After running this he need to input his birth date. Like,
         DAY: 01
         MONTH: 06
         Year: 2003

Then he will be wished...

Here is the programme...



//Created By Tanmoy Kumar Saha
#include<stdio.h>
#include<conio.h>
int main()

{
    int a,b,c;
    printf(" ''After typing one information.  
    click enter''\n ");
    printf("\n");
    printf("Enter Your Birth Date\n");
    printf("Day:");
    scanf("%d",&a);
    printf("Month:");
    scanf("%d",&b);
    printf("Year:");
    scanf("%d",&c);

    printf("\n");

    printf(" .    .      .      ...    ...    .     .  \n");
    printf(" .    .     . .     .  .   .  .    .   .   \n");
    printf(" ......    .   .    .  .   .  .     . .    \n");
    printf(" .    .   .......   ...    ...       .     \n");
    printf(" .    .  .       .  .      .         .     \n");
    printf(" .    . .         . .      .         .       ");
    printf(" \n");
    printf(" \n");
    printf(" \n");
    printf(" ....     ...   ...     .........  .     .   \n");
    printf(" .    .    .    .   .   :   .   :  .     .   \n");
    printf(" .    .    .    .    .      .      .     .   \n");
    printf(" .....     .    .....       .      .......   \n");
    printf(" .    .    .    . .         .      .     .   \n");
    printf(" .    .    .    .   .       .      .     .   \n");
    printf(" .....    ...   .     .    ...     .     .     ");
    printf(" \n");
    printf(" \n");
    printf(" \n");
    printf(" . ..         .     .       .    \n");
    printf(" .    .      . .     .     .     \n");
    printf(" .     .    .   .     .   .      \n");
    printf(" .     .   .......      .        \n");
    printf(" .    .   .       .     .        \n");
    printf(" .  .    .         .    .        \n");
    printf("\n");
    printf("\n");
    printf("Prepared by ''TANMOY KUMAR 
    SAHA''\n");
    printf("          THANK YOU");
    getch();
    return 0;

}


                 THANK YOU

No comments:

Post a Comment