Pic. reference - http://41.media.tumblr.com/ec1e2865d914521ded388fbcc447791c/tumblr_inline_nu6vqczp8y1tbt8rv_400.png #include<stdio.h> //Start Program void main() { int date,elapsed_days,future_day; //Declare the variables. printf("Enter an integer for today date of week = "); //Ask the user to enter integer for today. scanf("%d", &date); if (date < 7) //There are 7 days in week, if user inputs wrong, it should show an error message. { printf("Enter the number of days since elapsed today = "); //Input the days elasped since today. scanf("%d", &elapsed_days); future_day = (date + elapsed_days) % 7; //Find Future day. switch (date) //Print the message according to input. { case 0: // Two ways of writing program are switch and with if else. printf("Today is Sunday"); break; case 1: printf("Today is Monday"); break; case 2: printf(...