So basically I want to convert a birth date, set to integers, and I want to convert it into a string. I recently got into object programming and created a method that would convert the date of birth into a string to print it

User.h
#pragma once
#include <string>
#include <iostream>
using std::cout;
using std::string;
class User
{
private:
string name;...