Search:

Type: Posts; User: WolfPack

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    14
    Views
    4,651

    Please Prelude take the time to look at the last...

    Please Prelude take the time to look at the last line of the post that I made.



    I see no way that he could learn from getting code back that is perfect. I learn on the basis of getting a push...
  2. Replies
    14
    Views
    4,651

    #include char english_number( char...

    #include <stdio.h>

    char english_number( char *string ) ;
    void get_string( char buffer[], int size ) ;

    const int LENGTH = 81 ;

    int main( void )
    {
    char line[ LENGTH ] ;
  3. Replies
    14
    Views
    4,651

    #include char english_number( char...

    #include <stdio.h>

    char english_number( char *string ) ;
    void get_string( char buffer[], int size ) ;

    const int LENGTH = 81 ;

    int main( void )
    {
    char line[ LENGTH ] ;
  4. Replies
    2
    Views
    1,650

    Look at either the header file io.h or dir.h. I'm...

    Look at either the header file io.h or dir.h. I'm not sure which it is for Borland as I am on DevC++ but in either of the two there should be a struct called wither _finddata_t or ffblk which has...
  5. Thread: automate bios

    by WolfPack
    Replies
    2
    Views
    2,007

    Through a program I believe it is possible but it...

    Through a program I believe it is possible but it seems that you would need information on BIOS dependent functions or you would have to make them as well as possibly some ASM. As far as manually...
  6. Nevermind. I figured it out.

    Nevermind. I figured it out.
  7. Replies
    7
    Views
    1,732

    I didn't look all the way through it as I am...

    I didn't look all the way through it as I am working on a program myself but on line 26 and 27 you always want to make sure that the two files were actually created, so add some error checking for...
  8. This is not on topic of this thread but Arrummzen...

    This is not on topic of this thread but Arrummzen are you a common visitor to the HDC BBS?
  9. Replies
    2
    Views
    20,562

    Im learning linked lists so I can't help you with...

    Im learning linked lists so I can't help you with that but to help other people give you advice.....use the code tags when posting code.
  10. Replies
    5
    Views
    1,721

    Hehe...sounded like one.

    Hehe...sounded like one.
  11. Replies
    0
    Views
    896

    Array question

    Most languages that I know of support list like data structures. I was wondering if you can get the same effect in C. More specifically I am doing a program that will need to refer to days of the...
  12. Replies
    5
    Views
    1,721

    c/c++: ...

    c/c++:
    http://www.knowledgehound.com/topics/cpp.htm
    http://www.stickysauce.com/scriptdirectory/c/
    http://www.gustavo.net/programming/c.shtml
    http://www.planet-source-code.com/ ...
  13. Replies
    10
    Views
    2,796

    http://www.rt.com/man/execl.3.html There are...

    http://www.rt.com/man/execl.3.html

    There are several functions that allow you to excecute a file and are better to use than system("whatever.exe").
  14. Replies
    8
    Views
    3,409

    hehe

    hehe
  15. Replies
    3
    Views
    3,529

    You can also use 'system("pause");' stdlib.h

    You can also use 'system("pause");'
    stdlib.h
  16. Thread: file i/o

    by WolfPack
    Replies
    8
    Views
    1,356

    Thank you for the tip Dave as well the link...

    Thank you for the tip Dave as well the link explaining it.
  17. Thread: file i/o

    by WolfPack
    Replies
    8
    Views
    1,356

    Here are two very basic examples of file i/o. I...

    Here are two very basic examples of file i/o. I don't like to do this because it defeats the purpose of learning but this was how I learned.


    /*small example of file writing one character at a...
  18. Thread: feof ....EOF

    by WolfPack
    Replies
    12
    Views
    14,677

    Yea I picked up on that manual site after I...

    Yea I picked up on that manual site after I posted, hehe. Good link though.
  19. Thread: feof ....EOF

    by WolfPack
    Replies
    12
    Views
    14,677

    To a degree I knew the difference between the two...

    To a degree I knew the difference between the two in what code I have written. I have myself have always used EOF and when flipping through the book I saw the feof(), and read the several pages...
  20. Thread: feof ....EOF

    by WolfPack
    Replies
    12
    Views
    14,677

    By no means is this book my "manual." It has been...

    By no means is this book my "manual." It has been my first book on C yes, but i hardly use the thing due to the fact that reading it bores the hell out of me. I do not need you to sit there and...
  21. Thread: feof ....EOF

    by WolfPack
    Replies
    12
    Views
    14,677

    So hammer is one better suited for one instance...

    So hammer is one better suited for one instance and one for another? The statement I made came from Sams Teach Yourself C in 24 hours.
    "This function [feof()] is more useful when you're reading a...
  22. Replies
    2
    Views
    1,022

    This I know Salem. I used a for loop to get the 4...

    This I know Salem. I used a for loop to get the 4 digits that the user would input and used the for loop again to print out the 4 sorted digits.
  23. Thread: feof ....EOF

    by WolfPack
    Replies
    12
    Views
    14,677

    I believe feof() is used more for binary files...

    I believe feof() is used more for binary files and EOF is used more for text type files.
  24. Replies
    2
    Views
    1,022

    Sorting Problems

    This is a program that will ask the user for 4 numbers and sorts them from highest to lowest. It compiles fine with no errors but when I run the program it will not display the sorted array.

    ...
  25. Thread: Books

    by WolfPack
    Replies
    5
    Views
    1,294

    Also check out some of the big book sites like...

    Also check out some of the big book sites like amazon.com. You can also check out http://blacksun.box.sk and go to the book section. It is down right now but when they get it up it should be a big...
Results 1 to 25 of 29
Page 1 of 2 1 2