Program Name Description The program will count the number of lines, words, characters from standard input. Requirements Create the c program entwlc.c in the p04/ex0 directory. Using the format and words displayed in the Example of Output, the program will do the following: . • Display a the welcome message followed by a blank line Displays a message that indicates what the program will do followed by a blank line. Asks the user to enter text after this line followed by a blank line. . . entwle . • The program will read stdin (standard input) until it encounters an end of file marker (The user enters a Ctrl D) A blank line Display the heading " • A blank line • On a separate lines will display using test as in the example, the number of lines (do not count the line with only the EOF), words, characters (do not include EOF), alphabetic characters, digits, special characters (not counting spaces or new lines) . A blank line. . . . Text Statistics: Ends with a thank you message.
can somone help me with this in c language
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images
ok thank you, how would I use the code from the follow up to make a makfile, is it possible to do with just 1 file ? The makefile follows these directives:
The makefile directives will have a target for each .c that will create the object file, a target to create the executable (binary) file using the object files created by the object targets and a target called clean to remove all object files.
Hi thank you, but this doesnt full answer the question and in the output screenshot you posted the count is showing that there are 0 lines and only 3 words ?
also in the picture where it says execution and in example of output, it shows that the program is suppposed to call another file that has text already in it and count that while still using the scanf feature to promt the user to enter the file, how would I do that? Lastly it says the user must hit control D when they are finished, can you incorporate that as well
thank you