Question: C programming. Please add helpful and/or relevant comments. Relevant Programming Concepts: String in C The data compression algorithm RLE (Run Length Encoding) is based on
C programming. Please add helpful and/or relevant comments.

Relevant Programming Concepts: String in C The data compression algorithm RLE (Run Length Encoding) is based on the fact that a symbol within the data stream may be repeated many times in a row. This repetitive sequence can be replaced by a) An integer that declares the number of the repetitions b) The symbol (character) itself Write a C program that accepts a string of up to 100 characters and uses the RLE algorithm to compress it. Do NOT compress digits and Do NOT compress characters that appear once. Sample code execution 1: Red entered by a user Enter data stream: fffmmmm123bjjjjjjjjjjxttta789 Compressed stream: 3f4m123b10jx3ta789 Sample code execution 2: Red entered by a user Enter data stream: a5bggggggrrrrruuuklm Compressed stream: a5b6g5r3uklm
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
