Search:

Type: Posts; User: ahmed_alzahrani

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    1,419

    I hope this helps

    the ^ operator xors the bits:

    1^0 = 1
    0^1 = 1
    0 otherwise

    This statment can be exapnded as follows (from right to left) :

    n1 = n1 ^ n2;
    n2 = n2 ^ n1;
  2. Replies
    8
    Views
    1,367

    thanks caduardo21. It may sound a bit silly but...

    thanks caduardo21. It may sound a bit silly but my question is how to make my own graphics libraries instead of using other packages?!!

    I know some may say "Why do you want to reinvent the wheel?"...
  3. Replies
    8
    Views
    1,367

    a question for the experts

    Hi there,

    I've recently managed to "master" C, but what i'm asking is where to go from here?
    I'm quite interested in graphics,compression and compiler construction but I dont know where to go to...
  4. Replies
    1
    Views
    4,772

    creating dll's using gcc?

    my question is how to create dll's using the gcc compiler (the one installed
    with Dev-C++ editor)?? what I'm trying to do is create dll's to be used by the
    java native interface under MS...
Results 1 to 4 of 5