A help to create an ELF file

Hi!!! How do I create a file .ELF? What code should I use, could help me with a simple code or example? I know programming to Windows by important languages but this seems to be more sistematical, and I really don't know how to.

ELF is an exectuable format that is used on most Linux and Solaris OS boxes.

If you have gcc or cc on your unix box, create a simple "hello world" C code file.
Call it myfile.c Use gcc below if you have gcc, otherwise use cc.

gcc -o myfile myfile.c
file myfile

The file shows you what type of executable file was created. If you system uses ELF, it will be an ELF file.

Absolutilly thanks jim. I finally understand about the .ELF Maybe I can create an file but I will search fo r a Unix system first.