Search:

Type: Posts; User: webznz

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    4,504

    Thank you for your time and help, I understand...

    Thank you for your time and help, I understand the problems you have pointed out however because my grasp of these C functions is very limited I am unsure on the solutions for them.

    Any nudge in...
  2. Replies
    5
    Views
    4,504

    Im not wanting to append a \0, from what I...

    Im not wanting to append a \0, from what I understand if I append a \0 it will break my while loop which is listening for incoming requests.

    Thank you for your help, I'm still learning alot I...
  3. Replies
    5
    Views
    4,504

    Multi Threaded Web server question

    Hi there I'm currently working on a Multi Threaded webserver.

    So far I have manged to set up the webserver on an infinate loop waiting for a request at the socket.
    This is where it gets abit...
  4. Replies
    6
    Views
    1,222

    Thanks guys.. the missing semicolon was the key!...

    Thanks guys.. the missing semicolon was the key!
    God you get so caught up thinking its one this you miss something small like that!!!
    thanks again.. now I got a bunch of errors to deal with! lol
  5. Replies
    6
    Views
    1,222

    Thanks for the suggestion. I tried removing...

    Thanks for the suggestion.

    I tried removing tankmain.h, as it has nothing in it yet (I removed it from the make file, main file and deleted the file itself) And I still receive the same error.
    ...
  6. Replies
    6
    Views
    1,222

    I have an error with my make file.

    Hi there im currently working on a simple (simple for others not me lol) c++ object oriented game.
    I have several files which im trying to build with my SciTE compiler, however im running into an...
  7. GAA! lol now thats it!!!! it works, it makes...

    GAA! lol now thats it!!!! it works, it makes sense now! I just didn't see that,
    the first 800 times i ran through it in my head! couldn't understand why it didn't want
    to work!

    Thanks for the...
  8. okay thanks for the help.. I think im almost...

    okay thanks for the help.. I think im almost there. However I have hit a snag.
    Here is my altered code of the final function, Im pretty sure this should work!!!!



    void insSortRec (int b[],...
  9. Can someone help me with a Recusive Insertion Sort problem

    Hello there, before you say it I know, pointless!

    I have been asked to write two insertion sort functions.
    One that uses Iteration and another that uses Recursion, At first I had no problems...
  10. Replies
    5
    Views
    2,472

    Right.. i think i get it.. the if statment will...

    Right.. i think i get it.. the if statment will be true if strcmp of the opp variable is "add" then strcmp == 0 and will execute the if statment that it applies too! ...
    thanks guys!
  11. Replies
    5
    Views
    2,472

    thanks VAR, i have the beginning with C book by...

    thanks VAR, i have the beginning with C book by Ron House.. If has lots of strcmp stuff but nothing refering to the (0 == .. thanks for the link will read now.
  12. Replies
    5
    Views
    2,472

    god!

    thanks very much!
    Can you just tell me why you used the 0 == strcmp..
    what is the 0 for, sorry i would just like to make sure i understand it completely :)
    thanks again!
  13. Replies
    5
    Views
    2,472

    need help with hex adder.

    Hi, just having trouble with my hex adder.

    It will have to do several things first of which is to add two hex numbers together.
    It is read in with scanf as you will see below then I am going to...
  14. Replies
    4
    Views
    3,659

    I was asking for help with the conversion of

    decimal to binary.. I have left a comment in the code as to the area i am wanting to do it.

    Regarding gets() sorry i didnt explain but that part was required as outlined in the brief i am using.
    ...
  15. Replies
    4
    Views
    3,659

    I need help with decimal to binary Algorithm

    Hi there have been working on a project where I am asked to create a program that can accept input and give output.

    I need to be able to reconise input as binary or decimal or error..
    then out...
  16. Replies
    6
    Views
    1,746

    whicked! thanks alot!!! gonna check it out now!

    whicked! thanks alot!!! gonna check it out now!
  17. Replies
    6
    Views
    1,746

    that bubble up function is damn confusing.. how...

    that bubble up function is damn confusing.. how exactly dose that work... what is the reason for having it?
  18. Replies
    6
    Views
    1,746

    thanks jennifer!!!

    thanks jennifer!!!
  19. Replies
    6
    Views
    1,746

    Help, bubble-sort algorithm

    Hi there im studying for exams going over previous exams and I have this question im not sure even where to start ill show you the question and if anyone can help me that would be great.

    write a C...
  20. help, how would i change this recursive function

    into an iterative one, what steps would you take..



    int power (int n){
    int (n == 1){
    return 2;
    }else{
    return 2*power(n-1);
    }
  21. Replies
    7
    Views
    13,476

    well actually im reading up on recursive functions

    and if you wouldnt mind showing me a recursive way of doing it that would be great! jsut so i can get it in my mind the difference between ittiative and recursive!

    thanks heaps foxman! i see...
  22. Replies
    7
    Views
    13,476

    oh yea! right i get ya now.. ........ im a...

    oh yea! right i get ya now.. ........ im a dillpickel! lol
    so other than that the rest of the code is about right then?.
  23. Replies
    7
    Views
    13,476

    :S

    i dont know why i did that.... what is an alternative, scanf? other than that would this function work do you think?
  24. Replies
    7
    Views
    13,476

    write your own version of strcmp help..

    Hi there im just trying to write my own version of a string compare function for preparation for exams and i need some advice.. i think i have the general understanding of it however im pretty sure...
  25. viod function with a argument that points to a struct

    how would you do that?


    void foobar (struct *log);


    or is it done some other way?
Results 1 to 25 of 51
Page 1 of 3 1 2 3