Search:

Type: Posts; User: dune911

Page 1 of 6 1 2 3 4

Search: Search took 0.01 seconds.

  1. Thread: CGI in C

    by dune911
    Replies
    4
    Views
    1,767

    >> Hope this helps! Yes, indeed! :D Thanks!

    >> Hope this helps!

    Yes, indeed! :D Thanks!
  2. Thread: Funny Movie :)

    by dune911
    Replies
    9
    Views
    2,821

    Funny Movie :)

    Check out http://tschaka.de/data/kidstore.avi

    Or visit www.tschaka.de and click on the pic! ;)
  3. Thread: Funny Movie :)

    by dune911
    Replies
    0
    Views
    2,265

    Funny Movie :)

    Just follow this link:
    http://www.tschaka.de/data/kidstore.avi
  4. Thread: rand....

    by dune911
    Replies
    8
    Views
    1,329

    You may also try this code: #include...

    You may also try this code:


    #include <stdio.h>
    #include <stdlib.h>
    #include <time.h>

    /***************************************************
    * function to generate numbers between 1 and "max"...
  5. Replies
    7
    Views
    1,617

    Thanks @ everyone for posting a reply! :D I am...

    Thanks @ everyone for posting a reply! :D

    I am going to learn a little SDL to get practice in the idea of
    game programming and after I've played a little bit around
    with it, I think I move to...
  6. Replies
    7
    Views
    1,617

    Thanks for your reply! :) @ all : Someone...

    Thanks for your reply! :)

    @ all :
    Someone told me to start with Allegro or SDL, too. I think that is
    what I am going to do now. But which one should I choose? :rolleyes:

    And, on the other...
  7. Replies
    7
    Views
    1,617

    Game Programming? Questions!

    Hi there!

    I wanted to know which programming language I should use
    to start game programming. I tried a little Java but someone
    told me I should better go back to C/C++ for game programming.
    Is...
  8. Replies
    15
    Views
    2,624

    i just wanted to show a simple way :)

    i just wanted to show a simple way :)
  9. Replies
    15
    Views
    2,624

    yes, the code above is written in c++ but you...

    yes, the code above is written in c++
    but you can use the WinAPI in C also...
    just put some printf(); for the cout << ;) should work also
  10. Replies
    9
    Views
    5,625

    nice ;) thank you

    nice ;) thank you
  11. Replies
    15
    Views
    2,624

    here is some simple code for textcolor in console...

    here is some simple code for textcolor in console mode:


    #include <iostream.h>
    #include <windows.h>
    #include <conio.h>

    #define co1 1
    #define co2 2
    #define co3 3
  12. Replies
    9
    Views
    5,625

    uh ;) thanks!

    uh ;) thanks!
  13. Replies
    9
    Views
    5,625

    toupper(); tolower(); ?

    hi there
    are there functions like toupper(); and tolower();
    which i know from php that i can use in C ? :confused:
  14. Replies
    19
    Views
    3,374

    I would recommend the following book: Absolute...

    I would recommend the following book:

    Absolute Beginner's Guide to C
    Second Edition
    The friendly, informative way to learn the C language

    by Greg Perry
    SAMS Publishing
    ISBN 0-672-30510-0
  15. Replies
    26
    Views
    2,677

    as you can see, C is very powerful tough ;)

    as you can see, C is very powerful tough ;)
  16. Replies
    26
    Views
    2,677

    I startet do program in C once and I haven't...

    I startet do program in C once and I
    haven't done anything else, yet... :)

    It is always good to start with C to learn
    the basics and then, after some C coding
    move to C++ or even VC++. I...
  17. Thread: CGI in C

    by dune911
    Replies
    4
    Views
    1,767

    Really? Someone told me that I just have to...

    Really? Someone told me that I just have to upload the *.cgi :)
    I will ask my provider what I have to do to run my CGIs there...
    Thank you!
  18. Thread: CGI in C

    by dune911
    Replies
    4
    Views
    1,767

    CGI in C

    Hi, I just uploaded the following file to my webserver:
    http://www.packetst0rm.org/~dune/cgi-bin/sayhi.cgi
    When I try to start the file my IE only shows the source...

    Can anyone tell me why this...
  19. Thread: C/C++ Snippets

    by dune911
    Replies
    0
    Views
    1,593

    C/C++ Snippets

    Hi there,
    I have found an interesting snippet collection at:
    http://www.ping.de/sites/systemcoder/crelated.htm
    Have fun! :)
  20. Replies
    4
    Views
    1,092

    msvc++ 6 and ms access 2000

    hello...
    is there a way to use ms access 2000 .mdb's with msvc++ 6
    to create applications which read and store data in the .mdb?
  21. Thread: turbo c 2.01

    by dune911
    Replies
    3
    Views
    4,110

    i guess this works with borland only, right? :)...

    i guess this works with borland only, right? :)
    my devc++ won't compile it... but turbo c does
  22. Thread: fflush(stdin)

    by dune911
    Replies
    24
    Views
    60,276

    well, i think i am going to write a small...

    well, i think i am going to write a small tutorials including all the
    frequently asked questions on this board... really every one! :)
  23. Replies
    13
    Views
    2,806

    yes, i am using the console (but never included...

    yes, i am using the console (but never included windows.h, yet)
    thanks Barjor
  24. Replies
    13
    Views
    2,806

    @Hammer whoops :rolleyes: you're right... i=0...

    @Hammer
    whoops :rolleyes: you're right... i=0 not i=1...

    @Barjor
    can you tell me how, please? :)
  25. Replies
    13
    Views
    2,806

    this one works with every compiler :) void...

    this one works with every compiler :)


    void my_cls()
    {
    int i;
    for( i=0; i<=25; i++)
    { printf("\n"); }
    }
Results 1 to 25 of 141
Page 1 of 6 1 2 3 4