Page 1 of 1

Write a C program to implement the following requirement: Input: The program will read from the standard input any text

Posted: Fri May 20, 2022 5:53 pm
by answerhappygod
Write A C Program To Implement The Following Requirement Input The Program Will Read From The Standard Input Any Text 1
Write A C Program To Implement The Following Requirement Input The Program Will Read From The Standard Input Any Text 1 (66.11 KiB) Viewed 18 times
Write a C program to implement the following requirement: Input: The program will read from the standard input any text up to 10,000 characters. Output: The program will print to the standard output the followings: First, the number of words in the text. A word is a string without whitespaces (space/tab/new line character). Then, the reversed of the input text such that all upper-case alphabet characters (A-Z) will be converted to lower-case. Note: If the input text is empty or there is no word in the input text, the program must print the empty string to stdout. SAMPLE INPUT 1 Hello world! 123 SAMPLE OUTPUT 1 3 321 !dlrow olleh SAMPLE INPUT 2 <empty> SAMPLE OUTPUT 2 <empty> SAMPLE INPUT 3 This is the 1ST line. This is the 2ND line. SAMPLE OUTPUT 3 10 .enil dn2 eht si siht .enil ts1 eht si siht