Search:

Type: Posts; User: money?

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Thread: What's next?

    by money?
    Replies
    6
    Views
    3,010

    Hmmm... I think i 'll read the intoduction to...

    Hmmm...
    I think i 'll read the intoduction to C++ and Java of my book ( my problem is that i don't have time!! ), and then, i'll continue with the language that will mostly catch my interest( and if...
  2. Thread: What's next?

    by money?
    Replies
    6
    Views
    3,010

    What's next?

    I was thinking on what language to start.
    I only know C - and some very basics on C++ , and i want to sart a new language, if i find time, but i don't know which to choose. I have a book that is...
  3. Replies
    35
    Views
    7,809

    Xei, > We also don't like to go outside .......

    Xei,
    > We also don't like to go outside .... through secret messages
    People can also hurt me but i go outside, i watch TV and i go to theatre although i know it might be a little risky ( after...
  4. Replies
    35
    Views
    7,809

    About the gains, or test of your knowledge, or...

    About the gains, or test of your knowledge, or learning or tell it however you want, you can also gain, but without answering. For example, you see a question. You try to answer it and you finally...
  5. Replies
    35
    Views
    7,809

    Why to give h e l p?

    I am just wondering why do you guys give help to people you don't even know. I mean... what do you gain? Nothing. It's just a waste of time....( Aren't there more interesting things in your life to...
  6. Replies
    38
    Views
    10,330

    Ok..........but what "tk" means?

    Ok..........but what "tk" means?
  7. Replies
    6
    Views
    2,589

    Here's what i would have done: int A( int n...

    Here's what i would have done:


    int A( int n )
    {
    int i, x, y = 2, z = 1;

    if( n <= 1 )
    x = n+1;
    else
  8. Replies
    6
    Views
    1,950

    I think that some guys really don't deserve any...

    I think that some guys really don't deserve any help.

    itcs,
    how many times have you been told to use code tags?
    Also, when you have any problems with your code, try to break your code into...
  9. Here's an idea which can be improved with some...

    Here's an idea which can be improved with some effort:



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

    void delay(long s)
  10. Replies
    5
    Views
    1,265

    Here's how i would have made it: int A( int...

    Here's how i would have made it:


    int A( int n )
    {
    if( n==0 || n==1 )
    return n;
    else
    return( 2*A(n-1) - 3*A(n-2) );
    }
  11. Replies
    38
    Views
    10,330

    andrianwx, Thanks for the reply. I think i'll...

    andrianwx,
    Thanks for the reply.

    I think i'll follow sean_mackrory's suggestion.
  12. Replies
    5
    Views
    1,265

    >when n = 0, A = a What do you mean A = a?...

    >when n = 0, A = a
    What do you mean A = a? what's "a" ?
  13. Thread: read write prob

    by money?
    Replies
    6
    Views
    1,319

    Hey, Anon Helper, have you check any of the above...

    Hey, Anon Helper, have you check any of the above answers before posting?
  14. Replies
    38
    Views
    10,330

    Yeah, Namezero used to give you yourname.com bt...

    Yeah, Namezero used to give you yourname.com bt only for one year or something, and then you were obliged to pay to keep your account.

    Anyway, thanks for the answers. I knew it was very hard or...
  15. Thread: read write prob

    by money?
    Replies
    6
    Views
    1,319

    One of the errors is >if (fwrite(j,...

    One of the errors is
    >if (fwrite(j, sizeof(int), sizeof(long), fp) != 100 )
    Fwrite wil never return 100; It should be:
    fwrite( &j, sizeof(long), 1, fp )

    Also i should be of type long, you...
  16. Replies
    38
    Views
    10,330

    www.myname.com for free

    I accidentaly saw andrianwx's website. It ended with "dk". And i was wondering if you pay anything to have that website. Do you? If you don't, can you give me the website that gave you account?

    In...
  17. Replies
    30
    Views
    14,302

    I don't believe that so much discussion was made...

    I don't believe that so much discussion was made because i used another variable, because i 'd prefer the return statement to has only one thing for the first programm of a newbie.
    And what...
  18. Replies
    30
    Views
    14,302

    >You dont add to code when you dont have to....

    >You dont add to code when you dont have to. Making it easier to read is a good enough reason, but were doing basic stuff here. The smaller the better.

    So, next time remember to write "return...
  19. Replies
    30
    Views
    14,302

    >e.g. switcharoo(a, b); //with a and b being...

    >e.g. switcharoo(a, b); //with a and b being main()'s variables
    Or the variables in any other function. A function can call other functions.

    >you send the end result of the function's process to...
  20. Replies
    30
    Views
    14,302

    >Who are you refering to in the confused newbie...

    >Who are you refering to in the confused newbie statement?
    Obviously, not to you

    >I did it so he will get the right idea. You shuld have a reason to take up space.
    Do you really believe that a...
  21. Replies
    30
    Views
    14,302

    >Im being pretty picky about it, I know You...

    >Im being pretty picky about it, I know
    You shouldn't.

    It's just an example at it's simpliest form to explain something very basic to a confused newbye
  22. Replies
    30
    Views
    14,302

    >Use some tabs!!! Sorry for not using...

    >Use some tabs!!!

    Sorry for not using tabs...eerr.. how cah i print a tab(when i click the "selescts" the bottons )

    nold,
    I don't know what you are talking about, i don't either know who you...
  23. Replies
    6
    Views
    9,726

    >we haven't talked about such topics yet... and I...

    >we haven't talked about such topics yet... and I just browse my books, and get some ideas..

    Then, you shouldn't be happy with an answer like mart_man's. Thy find answer's that fit your knowledge.
  24. Replies
    30
    Views
    14,302

    Well, here's a very simple example which i hope...

    Well, here's a very simple example which i hope will help:


    #include <stdio.h>

    int sum( int, int ); // the bold int says that function sum will return a value of type int

    int main( void )...
  25. Thread: Is C dull?

    by money?
    Replies
    6
    Views
    1,407

    The only thing your lessons taught you was how to...

    The only thing your lessons taught you was how to change the colour and do stuff like this?
    ...just curious..
Results 1 to 25 of 124
Page 1 of 5 1 2 3 4