Im kinda new at this but you would need use toupper();
and inputone[0] and inputtwo[0] of what ever your cin was....
[0], [1]. [2].........being the position of the character you want to be uppercase
example:
string firstname;
cin >> firstname; //john
fname [0] = toupper (firstname[0]);
cout << firstname<<endl ;
//john is the cin of string firstname...
Leave a comment: