Sunday, August 3, 2008

Microsoft Student Partner Programme


Microsoft Student Partner applications extended by ZDNet's Zack Whittaker -- For those who don’t know, the Microsoft Student Partner programme (MSP) is a faction of Microsoft represented by just under 1,400 university students from over 100 countries around the world (although the figures do seem to shift quite a lot from time to time), all interested about Microsoft technologies, their products, and engaging in careers [...]


NOTE : Its a yearly programme I think so it may help you in the future too....

Tuesday, May 6, 2008

Want to manage a Hotel




H O T E LLLLLL


Intro ::....


This is my greatest work as I feel personally.... Its a project thats done by me. Its a program to control the entire working of the hotel from front office to the kitchen. It took nearly 4 - 5 months for creating it. It contains a code of about 2200 lines.

Source Code ::..

By clicking the link below you can view the entire source code , I have not displayed here just because its too long to be displayed.
I can understand that its quite or nearly impossible for some beginners to understand , but i have provided this link for some efficient programmers... Try it out I hope u enjoy it...

Sample Output ::...
Its not possible for me to display the output file alone since it needs a lot of supporting files to display the right output. If you are really interested to view the output then u can download these files and save them in your TC folder and if you run the program you can experience the next dimension of C learning... Trust me it ll be really interesting...
The output looks as you see in this link....

Look Out ::....

For all friends of my blog I would like to announce that after this post all my next posts will be covering the basics of C C++ as many of the learners want me to do so....

Tuesday, November 6, 2007

U may know ur date of birth but ur day of birth !!!




DATE ----------->>> DAY



Intro ::..

This program is used to find the day of a any given date... This may be your birthday or the day u met your first spouse or anything else.... This program is created with the last program as a base...


Source Code ::...


/*PROGRAM TO FIND THE DAY OF ANY DATE*/


#include stdio.h
#include conio.h

void main()
{
int x,i,d1=1,d2,m1=1,m2,y1=1,y2;
long int d=0,y=0;
clrscr();
printf("\n\n\n\n\n\n\n\n\n\n\tENTER THE DATE\n\n\t");
scanf("%d%d%d",&d2,&m2,&y2);
if(m2>12d2>31(m2==2&&((y2%4==0&&d2>29)(y2%4!=0&&d2>28))))
printf("\n\n\tInvalid date");
else
{
if(m1==m2&&y1==y2)
d=d2-d1;
else
{
d=31-d1;
d+=d2;
}
m1++;
while(m1=12&&y1!=y2)
{
m1=1;
y1++;
}
else
m1++;
}
d+=y;
i=d%7;
printf("\n\n\tThe day corresponding to the given date is\n\n\t\t");
switch(i)
{
case 6:
printf("SATURDAY");
break;
case 0:
printf("SUNDAY");
break;
case 1:
printf("MONDAY");
break;
case 2:
printf("TUESDAY");
break;
case 3:
printf("WEDNESDAY");
break;
case 4:
printf("THURSDAY");
break;
case 5:
printf("FRIDAY");
break;
}
}
getch();
}


Merits ::..


* This program too has no exceptional cases...U can know even the day when Buddha was born if u know the date....


Sample Output ::...




U can try this out by yourself by clicking the link below..... Its really interesting.....


http://www.ziddu.com/download.php?uid=aayel5yparCgl5ats6yZlJyiZbCWlJWr5
http://www.ziddu.com/download.php?uid=ba2hlJurb7GbmZettayZlJyiZ7CWlJWp7

Look out ::...

This program can be run on any normal C compilers...