Search:

Type: Posts; User: Abda92

Page 1 of 10 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,068

    As far as I know, you're going to need to loop...

    As far as I know, you're going to need to loop through the arrays and set each element of arrayTwo to its corresponding element in arrayOne. A for loop would do best, I think.
  2. Just to make things clear, you want some API that...

    Just to make things clear, you want some API that will allow you to sign into Windows Live Messenger just by opening the application, so the application will input your email, password, and click...
  3. Replies
    12
    Views
    2,590

    Better to just compare chr with '\0'. Makes it...

    Better to just compare chr with '\0'. Makes it clearer, and more portable.
  4. Replies
    6
    Views
    5,452

    Interesting.. You always amaze me! I never...

    Interesting.. You always amaze me! I never thought of anything like that.
  5. Replies
    6
    Views
    5,452

    Yes I know that. But I'm currently learning the...

    Yes I know that. But I'm currently learning the language from "The C++ Programming Language", and I haven't reached loops yet (although I know already how to use them). In addition to that, the...
  6. Replies
    6
    Views
    5,452

    Thanks laserlight. Got it :)

    Thanks laserlight. Got it :)
  7. Replies
    6
    Views
    5,452

    print hex value of character

    Hi everyone,
    Sorry for the noobish question, but I just started learning C++ (I learned C before) and got stuck on a really simple exercise:
    Write a program that prints out the letters ´a ´..´z ´...
  8. Replies
    8
    Views
    6,575

    Think about it. How do you find the Nth power...

    Think about it. How do you find the Nth power mathematically? Once you know that, you just need to write some code to implement it.

    If you give it a try and it doesn't work, post your code here...
  9. Replies
    4
    Views
    1,050

    I can't see any problems with your statement....

    I can't see any problems with your statement. Perhaps you should post some more code?
  10. Replies
    5
    Views
    1,916

    Sorry, just a question about the following code:...

    Sorry, just a question about the following code:

    how does this work? is "append" a variable/macro constant that you set depending on the task(1 to append and 0 to overwrite)?
  11. Thread: strcat()

    by Abda92
    Replies
    11
    Views
    2,570

    you can use a very large array and hope it's...

    you can use a very large array and hope it's large enough to hold both strings. Other than that I can't think of a way to do with without sizeof and malloc. Why don't you want to use them?

    EDIT:...
  12. Thread: noob

    by Abda92
    Replies
    3
    Views
    1,937

    you can't use your char* variable as a counter...

    you can't use your char* variable as a counter too. you must declare another integer variable for that job.

    and check the for loop syntax, it's completely messed. check it out here:...
  13. Replies
    8
    Views
    2,262

    Header files don't contain any algorithms...

    Header files don't contain any algorithms themselves, they would only contain declarations, typedefs, global variables, etc.

    So where do you put the algorithms themselves? you keep them in another...
  14. Thread: Need Help

    by Abda92
    Replies
    20
    Views
    2,522

    sorry, I just based it on his logic. it should...

    sorry, I just based it on his logic.
    it should be <= 4
  15. Thread: Need Help

    by Abda92
    Replies
    20
    Views
    2,522

    so.... what's the problem? I realized that you're...

    so.... what's the problem? I realized that you're trying to input a string as a char though


    scanf ("&#37;c", today[]);

    Even if you wanted to correct that to read a string, you'd need to take the...
  16. Replies
    0
    Views
    2,052

    Use libESMTP with VC++ 2008?

    Hi,
    This is my first time to install a library, so excuse me if I make any silly mistakes...
    I need a library for the ESMTP protocol, so I ran over libESMTP during my searches. Everything looked...
  17. Replies
    7
    Views
    4,057

    After using a switch to ask the user what type...

    After using a switch to ask the user what type conversion he wants, you can just input the number using scanf() as hexadecimal, octal, or decimal. Then you can output the number using printf() in the...
  18. Replies
    10
    Views
    3,447

    Fixed it up. Thanks Elysia :)

    Fixed it up. Thanks Elysia :)
  19. Replies
    10
    Views
    3,447

    Worked with #undef UNICODE Thanks :D

    Worked with #undef UNICODE
    Thanks :D
  20. Replies
    10
    Views
    3,447

    Worked with #undef UNICODE :D EDIT: sorry for...

    Worked with #undef UNICODE :D

    EDIT: sorry for the double post...
  21. Replies
    10
    Views
    3,447

    Yes I think that is the problem. When I put the...

    Yes I think that is the problem. When I put the mouse on the function in MSVC++ 2008, I get the following popup under the mouse:


    #define GetWindowText GetWindowTextW

    so do I just need to...
  22. Replies
    10
    Views
    3,447

    yes. I'm compiling using MSVC++ 2008 on Vista. I...

    yes. I'm compiling using MSVC++ 2008 on Vista. I installed it off the DVD and made sure it installed all the required 64-bit features. But I'm not sure I'm compiling FOR 64-bit, because my profile is...
  23. Replies
    10
    Views
    3,447

    GetWindowText() not working with Vista???

    Hi,
    I've been using the function GetWindowText() for a while now on Windows XP. When I upgraded to Vista Ultimate 64-bit, I started getting different output from the function. Instead of saving all...
  24. Replies
    5
    Views
    6,049

    Thanks vart. It worked :D

    Thanks vart. It worked :D
  25. Replies
    5
    Views
    6,049

    Well, that's the problem... I don't even know...

    Well, that's the problem...
    I don't even know what that is. All I know is that it fixes errors like these:


    keymail.obj : error LNK2019: unresolved external symbol _closesocket@4 referenced in...
Results 1 to 25 of 233
Page 1 of 10 1 2 3 4