Search:

Type: Posts; User: ComputerWarrior

Search: Search took 0.00 seconds.

  1. Elysia, im showing the code 'as is'. im pretty...

    Elysia, im showing the code 'as is'. im pretty sure you saw i said 'algorithm' in
    my post above.
  2. well, the outcome is simple to predict. 'i' is...

    well, the outcome is simple to predict. 'i' is set to zero
    at the start of your program, then in main() 'i' is printed
    and then incremented by one. main() calls val() then,
    val() sets 'i' to 100,...
  3. Replies
    3
    Views
    2,244

    fprintf is like this: fprintf(FILE...

    fprintf is like this:



    fprintf(FILE *stream, char *args, ...);


    so to write integer 'Cash' to FILE stream:
  4. (Future) Career: C with OpenGL. Hobby: making 2D...

    (Future) Career: C with OpenGL.
    Hobby: making 2D games and Computer Troubleshooting.

    oh well, Computer Troubleshootings is also a hobby for me! it think that began
    when by computer got a failure...
  5. Replies
    2
    Views
    4,749

    its a fairly good book for beginners.

    its a fairly good book for beginners.
  6. Replies
    10
    Views
    1,778

    sorry 'bout that, i was in a hurry so i must have...

    sorry 'bout that, i was in a hurry so i must have forgotten the && signs...
    thanks for pointing that out pheininger!
  7. Replies
    8
    Views
    2,330

    while this may or may not be related, knowing...

    while this may or may not be related, knowing Win32, OpenGL (or DirectX),
    and afew other major APIs will give you a good chance to have success.
  8. I got Turbo C from Brothersoft: im not...

    I got Turbo C from Brothersoft:



    im not sure about TASM though, since im not much into
    assemblers. and the TC i have is v3.0...

    Cheers, ComputerWarrior.
  9. Replies
    10
    Views
    1,778

    you may use getch() instead of getchar(), getch()...

    you may use getch() instead of getchar(), getch() is included in conio.h

    example:


    #include <stdio.h>
    #include <conio.h>

    int main()
    {
  10. the game is not bad, as far as ASCII games go....

    the game is not bad, as far as ASCII games go. but what has this to do
    with a contest? this topic should have been in the General Discussion
    board.
  11. Replies
    5
    Views
    16,974

    HWND hEdit...

    HWND hEdit =CreateWindowEx(WS_EX_CLIENTEDGE,"EDIT",
    "Type Text Here",WS_CHILD|WS_VISIBLE|WS_HSCROLL|ES_AUTOHSCROLL,
    0,0,100,20,hwnd,(HMENU)SOME_KIND_OF_ID,GetModuleHandle(NULL),
    NULL);


    put...
Results 1 to 11 of 11