Reading in a string of words with \n inside?
-
Hi all, I have a problem of scanning multiple words that are separated by the enter command, like: Hello World i plan to save the words into the string but somehow i am unable to get to work + i need to count the number of letters in the string also anyone can help me on his? my program is as follows: #include <stdio.h> #include <string.h> #include <iostream.h> #include <conio.h> #define EOF 'NULL' main() { int string_size,wordcount; char string[100]; char string1[100]; fflush(stdin); wordcount=0; string_size=0; printf("\nPlese enter text: "); while (string[string_size] != EOF) { gets(string); string_size = strlen(string); } string_size = strlen(string); for(i=0;i<string_size;i++) { if(string[i]>='a' && string[i]<='z') wordcount++; if(string[i]>='A' && string[i]<='Z') wordcount++; } printf("There are %d num of words",wordcount); return 0; }
-
Answer:
Look into tokenizing using newline as the delimiter.
Anthony at Yahoo! Answers Visit the source
Related Q & A:
- How to replace a string inside of a Word Document?Best solution by Stack Overflow
- How can I convert a string number to a number in Perl?Best solution by Stack Overflow
- How costly is it to renovate an old barn, into a three bedroom, water, electric n gas are within a few meters?Best solution by Yahoo! Answers
- Is the University of reading, UK, a good university?Best solution by Yahoo! Answers
- What is a "strong reading" of a text?Best solution by teachmama.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.