Search:

Type: Posts; User: 52Cent

Search: Search took 0.01 seconds.

  1. Replies
    13
    Views
    2,605

    Ok guys, after long hours of searching and...

    Ok guys, after long hours of searching and researching the web (specifically wiki) trying to figure out what is shunting yard algorithm, what is polish notation (and what is notation at all), and how...
  2. Replies
    13
    Views
    2,605

    Yes I was just thinking about it. using a simple...

    Yes I was just thinking about it. using a simple recursion - every time there is a '(' the function call to itself and keep calculating, until it gets a ')' and than returns. But I had some problems...
  3. Replies
    13
    Views
    2,605

    I dont understand, what are you saying? I have...

    I dont understand, what are you saying? I have already said that If the user doesnt provide parenthesis the program should calculate from left to right, and not in order of arithmetic operations, so...
  4. Replies
    13
    Views
    2,605

    Building a calculator

    I have been trying to build a calculator, and i got to a point where i have 2 arrays: char array that contains the math operation signs and a int array for the numbers. And I need to do the...
  5. Replies
    20
    Views
    3,381

    using recursion: void Show(int arr[], size_t...

    using recursion:

    void Show(int arr[], size_t n)
    {
    for(int i=0;i<n;i++)
    if(arr[i]!=0)
    printf("%d,",arr[i]);
    putchar(10);
    }
  6. Thread: Win32 API help

    by 52Cent
    Replies
    8
    Views
    5,003

    Ok thank you, i got it. actually i searched...

    Ok thank you, i got it. actually i searched earlier in the msdn site but i didn't find it for some reason, but now i can see it. i guess i need to improve my searching skills...
    Anyway i looked for...
  7. Thread: Win32 API help

    by 52Cent
    Replies
    8
    Views
    5,003

    Sorry but... what do i need to do? i dont think...

    Sorry but... what do i need to do? i dont think i got it....
  8. Thread: Win32 API help

    by 52Cent
    Replies
    8
    Views
    5,003

    Thanks for the suggestion, but i prefer to learn...

    Thanks for the suggestion, but i prefer to learn this subject from the web- im using the Forger's guide. I have allready bought a book for the basics of C programming, the rest ill try to learn...
  9. Thread: Win32 API help

    by 52Cent
    Replies
    8
    Views
    5,003

    Win32 API help

    Hi.
    i have just started programming Win32 API using DEV-C++. i need the Wind32 API reference help and i dont think it comes with DEV-C++. I looked here but it seems to not exist anymore. so where...
Results 1 to 9 of 9