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". -- Chris -- ## List details at https://lists.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ## Please use the Wiki with this list - http://wiki.exim.org/
