Write a C++ program to read age of 15 people and count total Baby age, School age and Adult age.
Object: Write a C++ program to read age of 15 people and count total Baby age, School age and Adult age.
Code:
#include<iostream>
#include<conio.h>
using namespace std;
void main()
{
int age, baby=0, school=0, adult=0, i=1;
while(i<=15)… continue or more information…