C/C++/JAVA/Python programming project with source code | "MEDICINE REMINDER" project.
Source code #include <stdio.h> #include <conio.h> #include <stdlib.h> void cough(); void Heart_Disease(); void Headache(); void flu(); int main() { int age_entered; int age=15; int choice; char option; do{ printf("* WELCOME TO THE MEDICINE REMINDER***\n\n"); printf("Please select your medical problem from the list below\n\n"); printf("1-Cough\n2-Heart Disease\n3-Headache\n4-Flu\n "); scanf("%d",&choice); switch(choice) { case 1: cough();break; case 2: Heart_Disease();break; case 3: Headache();break; case 4: flu();break; case 5: system("cls"); printf("\n~~~~~~~~~~~~~ THANK YOU ~~~~~~~~~~~~\n"); printf("\n*******FOR USING OUR SERVICE********\n\n"); exit(0); break; defaul