how to write Program to convert days into years and weeks
Hello friends, Welcome to your Techgsr.co blog. And today in this article we will learn about how to write Program to convert days into years and weeks .So let’s go to our topic #include <iostream.h> #include <conio.h> void main() { clrscr(); int days,years,weeks,num1; cout << “Enter the number of days : ” << endl; cin>>days; years=days/365; … Read more