Search:

Type: Posts; User: whiteflags

Search: Search took 0.10 seconds.

  1. Replies
    12
    Views
    2,699

    The *scanf approach is actually not too much...

    The *scanf approach is actually not too much different from the tokenizing approach, if you're able to see *scanf as a tokenizer itself. The scanf functions are essentially tokenizing chunks of text...
  2. Replies
    12
    Views
    2,699

    Does this even work? Somehow you got away with...

    Does this even work? Somehow you got away with using absolutely no storage. Some people told you to use an array of arrays and a while loop.

    The fact that you have called fscanf() twice in the...
  3. Replies
    12
    Views
    2,699

    fscanf is actually pretty good at reading words....

    fscanf is actually pretty good at reading words. Just make sure that your storage is large and that the size is in the format string, like, "%1023s" for a 1KB array.
Results 1 to 3 of 3