i want the source code

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • surekhareddy
    New Member
    • Feb 2007
    • 2

    i want the source code

    i want to count the number of words in a file containing more than 1000 lines
  • MMcCarthy
    Recognized Expert MVP
    • Aug 2006
    • 14387

    #2
    Originally posted by surekhareddy
    i want to count the number of words in a file containing more than 1000 lines
    This is not a language forum. What language are you referring to and I will move you to the appropriate forum.

    Comment

    • kvbreddy
      New Member
      • Feb 2007
      • 23

      #3
      Originally posted by surekhareddy
      i want to count the number of words in a file containing more than 1000 lines
      using unix command u can find it..

      wc -w filename

      Even in the source code also u can run this command using system function.

      Comment

      • bartonc
        Recognized Expert Expert
        • Sep 2006
        • 6478

        #4
        Originally posted by kvbreddy
        using unix command u can find it..

        wc -w filename

        Even in the source code also u can run this command using system function.
        There is lots of unix-like source code, including wc, here.

        Comment

        • r035198x
          MVP
          • Sep 2006
          • 13225

          #5
          You can also use a host of other languages and techniques as well. As Mary said, be more specific in your question and it will be much easier to help you.

          Comment

          Working...