Here's the program :)
Just check with year for leap year.
If(Year %4 == 0)
{
if ( Month <=2)
{
Year++;
DateCalc(Day, Month, Year);
}
}
else if(Year+1%4 == 0)
{
if (Month > 2)
{
Year++;
DateCalc(Day, Month, Year)
}
}
else
{
Year++;
}
DateCalc(day, month, year)...
User Profile
Collapse
-
What is Unmanaged Coding?
Hi,
I am new to .Net and Have read theory about what an Unmanaged code is. But details I got were not sufficient. Can any one tell about Unmanaged code in .Net and its advantages.
Please provide pointers to Good tutorials for the same.
Thanks,
AbhiR
No activity results to display
Show More
Leave a comment: