Search:

Type: Posts; User: nga_tom

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    1,383

    First, >==, what sort of operator is that - did...

    First, >==, what sort of operator is that - did you mean >=?
    For the logic, use two loops, one nested inside of the other - you can use while or for:
    simple example:


    for(i=0; i<10;i++){
    ...
  2. Replies
    15
    Views
    6,393

    Are C and C++ still relevant - depends on the...

    Are C and C++ still relevant - depends on the problem to be solved. I couldn't imagine a firewall, ids, network analyzer, real time trading or risk analysis system being written in java, vb or C#....
  3. Thread: Practice

    by nga_tom
    Replies
    3
    Views
    1,777

    Try...

    Try http://www.amazon.com/Puzzle-Book-Alan-R-Feuer/dp/0201604612. If you can work through this and understand what and why for the solutions, you will have no problem working as a C programmer in...
  4. Replies
    1
    Views
    998

    DJBPP is supposed to be a port of GCC - check...

    DJBPP is supposed to be a port of GCC - check http://www.ibiblio.org/gferg/ldp/GCC-Inline-Assembly-HOWTO.html#s3
    sections 3, 4 and 5.
    If you cannot resolve the issue directly, you may want to try...
  5. Thread: Menu in C++

    by nga_tom
    Replies
    6
    Views
    3,675

    ahh Grasshopper, you have not yet learned of...

    ahh Grasshopper, you have not yet learned of loops and return values. To make your menu always reappear (by magic of course) place it inside of a for(;;) (this is supposed to be another semicolon...
  6. Replies
    21
    Views
    10,379

    I think somewhere along the line you forgot to...

    I think somewhere along the line you forgot to map your points and lines to a physical device or to a buffer that maps to a physical device - without that you have no spatial reference to the screen...
  7. Replies
    10
    Views
    4,423

    If anyone has any direct experience with graphics...

    If anyone has any direct experience with graphics programming under linux and can render a first person recommendation - not what they found on google, I would love to hear about it. The prior...
  8. Replies
    10
    Views
    4,423

    Thanks for the info, I now have some reading to...

    Thanks for the info, I now have some reading to do

    tom
  9. Replies
    8
    Views
    1,445

    there are a number of wonderful books listed at...

    there are a number of wonderful books listed at near the start of this list - try reading a few and following the examples. Try googling for Thinking in C Plus Plus - wonderful book and free online
  10. Replies
    10
    Views
    4,423

    I was planning on using the GTK for Dialogs and...

    I was planning on using the GTK for Dialogs and Menus - however I have not found any really decent doc on it's graphic capabilities. I need to plot xy, scale objects and place them dynamically and...
  11. Replies
    10
    Views
    4,423

    x,xlib, xt, motif or ??

    I have just started designing a program that has some very extensive graphics requirements. The program is being written in C/C++. (Actually it is quite far into development.)
    My question is what...
Results 1 to 11 of 11