Search:

Type: Posts; User: manutd

Page 1 of 20 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    15
    Views
    6,330

    No, I know 5!! is not factorial of a factorial,...

    No, I know 5!! is not factorial of a factorial, but do the parentheses make a difference?
  2. Replies
    34
    Views
    4,827

    OK, I'll be nice. Yeah, so :) Anyways, here's...

    OK, I'll be nice.
    Yeah, so :)
    Anyways, here's how the code should look:

    #include <stdio.h>#include <conio.h> //Eww. See below.
    void convert(int);
    int main (void){
    int x; //Sample X
    ...
  3. I disagree. I think C++ is easy to learn as long...

    I disagree. I think C++ is easy to learn as long as you take it in small steps. Once you've got the language basics, you can move on to more complex stuff, eventually bringing yourself up to the...
  4. Replies
    34
    Views
    4,827

    Have you read anything?

    Have you read anything?
  5. Replies
    13
    Views
    1,890

    Oh, OK. My fault, I haven't used .NET in so long.

    Oh, OK. My fault, I haven't used .NET in so long.
  6. Replies
    15
    Views
    6,330

    I assume the factorial of the factorial would be...

    I assume the factorial of the factorial would be like: (5!)!
  7. Replies
    13
    Views
    1,890

    Methinks this is C#. This is a C++ forum. Mods,...

    Methinks this is C#. This is a C++ forum. Mods, please move.
  8. Replies
    5
    Views
    848

    if ( a >= 0 && a

    if ( a >= 0 && a <= 100
    Here's the error. Correction bolded:
    if ( a >= 0 && a <= 100 )
  9. Thread: random function

    by manutd
    Replies
    2
    Views
    938

    "dear experts"...oh dear. I'll say it: post your...

    "dear experts"...oh dear. I'll say it: post your attempt and we'll help you with it. We are not here to do your homework for you.
  10. Replies
    57
    Views
    12,644

    This got sidetracked.

    This got sidetracked.
  11. More important would be the upgrade to (as...

    More important would be the upgrade to (as Prelude said) .NET 2003 or 2005. Then look at Enterprise.
  12. Replies
    5
    Views
    1,359

    I've done that once. Nothing very functional, but...

    I've done that once. Nothing very functional, but it was funny :)
  13. Replies
    44
    Views
    4,899

    aka std::string a = "C:\"; std::string b =...

    aka
    std::string a = "C:\\";
    std::string b = "C:/";
  14. Replies
    34
    Views
    4,827

    Then put it in your posts. And don't make Prelude...

    Then put it in your posts. And don't make Prelude angry.
    So? That's what you'll do in the real world, too.
  15. 21 Days is just ok. It gets a meh. Also, another...

    21 Days is just ok. It gets a meh. Also, another free (and great) IDE is Code::Blocks.
    PS: Prelude, I like the new logo.
  16. Replies
    5
    Views
    1,359

    Yes, assembly is hard to do, particularly...

    Yes, assembly is hard to do, particularly anything useful. Kennedy would know ;)
  17. Replies
    2
    Views
    1,524

    Show us the code.

    Show us the code.
  18. Replies
    10
    Views
    1,435

    schildt?

    schildt?
  19. Yeah, I started programming at 13. It's great to...

    Yeah, I started programming at 13. It's great to learn then because you have a solid base for the future.
  20. Replies
    10
    Views
    1,435

    Pick up a good book...

    Pick up a good book.
  21. Replies
    10
    Views
    1,435

    Also try cout

    Also try
    cout << endl << x + y << " " << x * y << endl;
    Then remove the cout << "\n".
  22. Replies
    4
    Views
    1,330

    1. #include #include ...

    1.
    #include <conio.h>
    #include <stdio.h>
    #include <stdlib.h>
    Should be:
    #include <cstdio>
    #include <cstdlib>
    2. Indentation.
    3.
    d.dbl=(double*)malloc(sizeof(*d.dbl));
  23. Replies
    5
    Views
    1,641

    You link the libraries in. Look at the sample's...

    You link the libraries in. Look at the sample's makefile.
  24. Replies
    14
    Views
    5,073

    Icons are introduced in the resource and put into...

    Icons are introduced in the resource and put into the window in the main piece of code.
  25. Replies
    10
    Views
    1,435

    After the std::cout line insert std::cin.get().

    After the std::cout line insert std::cin.get().
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4