CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Johnny_J

Search: Search took 0.01 seconds.

  1. Replies
    19
    Views
    8,576

    Re: header files online database

    Yes, undefined in pure C code as I said/asked.
  2. Replies
    19
    Views
    8,576

    Re: header files online database

    Lots of errors. Many undefined types: What is "vector" in pure C code for example?
  3. Replies
    3
    Views
    2,913

    Re: c/c++ ide for win/linux GUI programming

    https://visualstudio.microsoft.com/vs/
  4. Replies
    4
    Views
    1,637

    Re: Recursive wildcard expansion

    Yes:
    Program input '*b*' with output length 2:
    The pattern '*b*' will expand to bb*, the asterisk removed and 'bb' remains. So far, so good.
    The pattern '*b*' will also expand to *bb, the asterisk...
  5. Replies
    4
    Views
    1,637

    Re: Recursive wildcard expansion

    Thanks for the answer. I'm aware of set that but I'd like to have the code perform without removing duplicates.
  6. Replies
    4
    Views
    1,637

    Recursive wildcard expansion

    I'm experimenting with a recursive function to do wildcard expansion. The asterisk, '*', can expand to 0-n characters.

    My question is if there is something fundamentally wrong with my recursive...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured