Autor: Christopher Meadors Data: Para: exim-users Asunto: Re: [exim] Test code (Anyone using platform without
64-bitintegers?)
On 12/04/2013 01:53 PM, Always Learning wrote: >
> How does one do that? Saving the extract to a file, tt.c, for instance
> then running 'gcc tt.c' produces nothing.
>
> (Slightly embarrassed because I don't know)
> but never-the-less
That should have given you a file called a.out, you can run that: ./a.out
Or you could have used:
gcc tt.c -o tt
That'd give you an executable named "tt".