Given a string and we have to print its first uppercase character (if exists) using C++ program.
Example:
Input string: "hello world, how are you?"
Output:
No uppercase character found in string.
Input string: "Hello World"
Output:
First uppercase character is: "H"
Input string: "hello worlD"
Output:
First uppercase character is: "D"
Program to print first uppercase character of a string in C++
Output