Search:

Type: Posts; User: audinue

Search: Search took 0.01 seconds.

  1. Thread: C parsing

    by audinue
    Replies
    5
    Views
    3,437

    Traditional parsing example: char c; ...

    Traditional parsing example:

    char c;

    while((c = getchar()) != EOF)
    {
    if(c == '$')
    {
    while(isalpha(c = getchar()))
    {
  2. Thread: C parsing

    by audinue
    Replies
    5
    Views
    3,437

    Try to learn advance topics: Automata, is a good...

    Try to learn advance topics: Automata, is a good way to parse something.
Results 1 to 2 of 2