Search:

Type: Posts; User: G.Martin

Search: Search took 0.01 seconds.

  1. Replies
    9
    Views
    9,653

    gcc actually stands for gnu compiler collection...

    gcc actually stands for gnu compiler collection and it while you are asking about C (since it's a C forum) it can compile other languages as well and be extended by a programmer to do other things....
  2. Replies
    9
    Views
    9,653

    Yes. Although, if you read from the link provided...

    Yes. Although, if you read from the link provided by laserlight you'll see you can emit that step and and only output an object file (-c).
  3. Replies
    9
    Views
    9,653

    Both :) First it runs the preprocessor to expand...

    Both :)
    First it runs the preprocessor to expand macros, compiles to assembler, compiles that to object code and links it into the final output.

    -Greg.
  4. Replies
    5
    Views
    8,074

    The actual values you get will be system...

    The actual values you get will be system dependent. I cleaned you code up to get rid of the basic warnings it generates add ran it on my system.



    #include<stdio.h>
    #include<stdlib.h>

    struct...
  5. Replies
    1
    Views
    7,273

    In the send function you are de-referencing the...

    In the send function you are de-referencing the pointer S (the * operator) and then adding the value of n to it. The value of *S, in your example, is 0 so your program is printing 0 + the value of n...
Results 1 to 5 of 5