The program reads a line of text containing multiple words and outputs a single string where each character represents the starting letter of a word in the original input. Input: mirko soft → Output: MS

biti ali i ne biti → Output: BNB (Note: Single-letter words like 'i' are typically treated as full words depending on the specific problem constraints). Input: ali ja sam i jucer jeo → Output: AJSJJ Procedural Implementation Steps

#include #include #include #include Use code with caution. Copied to clipboard

2 Comments

  1. Ispit.cpp Apr 2026

    The program reads a line of text containing multiple words and outputs a single string where each character represents the starting letter of a word in the original input. Input: mirko soft → Output: MS

    biti ali i ne biti → Output: BNB (Note: Single-letter words like 'i' are typically treated as full words depending on the specific problem constraints). Input: ali ja sam i jucer jeo → Output: AJSJJ Procedural Implementation Steps ispit.cpp

    #include #include #include #include Use code with caution. Copied to clipboard The program reads a line of text containing

Leave a reply...