How to marshall a string in C?

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

Was this solution helpful to you?

Just Added Q & A:

Find solution

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.