Search:

Type: Posts; User: Goof Program

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    3,056

    It's ok, some one replyed to my other post and...

    It's ok, some one replyed to my other post and said i need to use a carrage return [\r] not just [\n] new line.

    textcolor(13);
    cprintf("Text here\r\n");
  2. Thanks for the help, It has made my coding easyer.

    Thanks for the help, It has made my coding easyer.
  3. I have one last question. If I do [cprintf("text...

    I have one last question. If I do [cprintf("text here\r");] is that the same as [printf("text here\n");]?

    Thanks
  4. Problem with [colortext()] and [textbackground()]

    Why does [cprintf()] not work the same way as [printf()]?

    Please compile my code and see what I mean.



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

    int main(void)
  5. Replies
    5
    Views
    3,056

    No thats not what I wanted to do, What I want is...

    No thats not what I wanted to do, What I want is to know is when I use the textcolor(); and taxtbackground(); to change the colors, and then use cprintf(""); to display what ever, how come it does...
  6. Replies
    5
    Views
    3,056

    Text and background Color

    When ever I try to make my text or the background another color other then the normal DOS color (gray, black) it all ways puts my text and stuff weird. why does it do that and how can I fix it?
    ...
  7. Replies
    3
    Views
    985

    two *.c files to one?

    I made a program, and I would like to add this other program I made to it also. But I dont want to type in the program and make it a function. Is there a faster way to to link them?

    I want this...
  8. Replies
    8
    Views
    4,069

    Thank you so much for all the help. It seems to...

    Thank you so much for all the help. It seems to work now.

    Again thank you.
  9. Replies
    8
    Views
    4,069

    How could I do that with out having the person...

    How could I do that with out having the person type there name like:


    printf("Enter the first letter of your name: ");
    scanf("%s",&first);
    first=toupper(first);
    printf("Enter the second letter...
  10. Replies
    8
    Views
    4,069

    while(done) is now while(!done), but it still...

    while(done) is now while(!done), but it still wont compile because of the toupper function. I get an error


    [Type mismatch in parameter '__ch' in call to 'toupper']
  11. Replies
    8
    Views
    4,069

    Ok I did the change, but it is still having...

    Ok I did the change, but it is still having problems, I eather get compilling errors (or if i edit it i dont get errors but the exe does nothing).



    #include <stdio.h> //Basic funtions
    #include...
  12. Replies
    8
    Views
    4,069

    check for typing???

    Hello, I started making this program where people would type there name in and it would put the meanning of there name on the screen. I ran in to a problem with comparing what they typed. Heres the...
  13. Thread: pls help

    by Goof Program
    Replies
    6
    Views
    1,151

    I deleted some of the code that killed the while...

    I deleted some of the code that killed the while loop because that might not be what you wanted. so i left it up to you so you can use what you need. thats just the base of it. It is a function on...
  14. Thread: pls help

    by Goof Program
    Replies
    6
    Views
    1,151

    Yeah I did the same thing on a program of mine...

    Yeah I did the same thing on a program of mine only i used the keys E=left, D=down, E=up, and F=right. In my program I put it in it's own function so I only had to type PLAYER(); in the main()...
  15. Replies
    2
    Views
    1,471

    Yeah I did the same thing on a program of mine...

    Yeah I did the same thing on a program of mine only i used the keys E=left, D=down, E=up, and F=right. In my program I put it in it's own function so I only had to type PLAYER(); in the main()...
  16. Replies
    7
    Views
    3,728

    Try the getch(); for just one key press or...

    Try the getch(); for just one key press or getchar(); for more then 1 key press.

    if you dont want the program to stop and wait for the key press use the kbhit(); and then later use getch(); or...
  17. Replies
    1
    Views
    1,459

    Auto Maze Maker (for DOS)

    Im making a maze game for dos using the double line characters as walls. how can i make it so i dont have to type every character in (see Code)?

    I hope that I may learn from the help you give me....
  18. Replies
    1
    Views
    1,105

    Books and Compilers

    1)
    I'm learning C from the dummies books and have some other c books. They all program for dos, whats a good book that will teach me how to program for Windows?

    2)
    I have Borland C++ 3.1 and...
  19. Replies
    1
    Views
    1,539

    random maze gen.

    I am making a maze game in DOS and I use the double line character's (ASCII '185' and other's). How can I make it so that my program will make a random maze, where it can be solved and it works out...
  20. Replies
    2
    Views
    2,419

    The site was not working befor so I just had to...

    The site was not working befor so I just had to wait a while.

    thanks for the help
  21. Replies
    2
    Views
    2,419

    cant download DJGPP

    I'd like to know if I can get DJGPP from some other place then[http://www.delorie.com/djgpp/]. Because when I cant even get to the page where i can download the files.

    All Help is extremly...
  22. Replies
    8
    Views
    2,405

    ¿What is that?

    ¿What is that?
  23. Replies
    7
    Views
    1,995

    Why not just type the code and make one [*.exe]...

    Why not just type the code and make one [*.exe] file?
  24. Replies
    8
    Views
    2,405

    I can make a function that would put random walls...

    I can make a function that would put random walls but there would be no space's to have the player move around in, I have no clue how to make it so it's a maze and not just a bunch of the double line...
  25. Replies
    8
    Views
    2,405

    Yeah, I understand that but how does the computer...

    Yeah, I understand that but how does the computer know where theres a wall with out me having to say "theres a wall at x,y & x,y & x,y... so on."
Results 1 to 25 of 43
Page 1 of 2 1 2