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

Search:

Type: Posts; User: bringo

Search: Search took 0.05 seconds.

  1. please explain me this multi-digit print program

    Please consider this code:

    .model small
    .stack 100h
    .code

    .startup

    mov AX,235
  2. Re: Hello.asm Compiles without errors yet no Hello.exe generates

    Hello there, I am much upset due to this problem. I have to solve this before morning, I before going to class. Please help me. It's driving me crazzzyy..
  3. Hello.asm Compiles without errors yet no Hello.exe generates

    Hello there,
    I am newbi in assembly programming. Kindly consider the following simple hello world program in assembly;


    .model small

    .stack 100h
    .data
    message DB "Hello world !$"
  4. Re: How to write C++ program for a specific finite automata?

    Thanks a lot. I'm doing advised by paul and bkelly. I have installed Microsoft Visual Studio 8.
    I'll soon share the proceedings.

    Thanks a lot again.
  5. Re: How to write C++ program for a specific finite automata?

    Thanks a lot dear Paul McKenzie. Can you please name a few compilers more ? Can I use C++ (not Visual C++) code in Visual Studio 8 as well ? If yes please tell me initial steps for this. Thanks...
  6. Re: How to write C++ program for a specific finite automata?

    Thanks Amleto. Your reply is really helpful.

    1. I am using Turbo C++, 3.0. How can I know if it contains the regexp header ? or where can I get it if not included with Turbo C++ 3.0 ?

    2. Can...
  7. How to write C++ program for a specific finite automata?

    Hello there,
    I want to write a program for a specific finite automata, e.g., for the RegExp = (a+b)*b. The program should ask for a string input and tell whether the string is VALID or INVALID.
    ...
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured