Pure Programmer
Blue Matrix


Cluster Map

Project: Password Phrase

One way to come up with a password is to think of a long phrase that is easy to remember, then take the first letter of each word in the phrase to compose the password. Write a program that defines a string constant with the phrase, then prints out the password composed from the first letter of each word in the phrase.

Output
$ g++ -std=c++17 PasswordPhrase.cpp -o PasswordPhrase -lfmt $ ./PasswordPhrase Password is Fsasya

Solution