Thread: (.out)

  1. #1
    Unregistered
    Guest

    Question (.out)

    I have to write this summary and I don't know anything about the .out files. Anyone know a tutorial on it or your own personal explination. Thanks, OS Newbie.


    Write a summary and find the file formats for the Linux binary executable file (.out).
    Include a high amount of detail.

  2. #2
    Registered User Nutshell's Avatar
    Join Date
    Jan 2002
    Posts
    1,020
    Hope this'll be helpful...

  3. #3
    Unregistered
    Guest

    Talking

    Thanks. That helps some.

  4. #4
    Registered User alex's Avatar
    Join Date
    Sep 2001
    Posts
    132
    Most a.out files are in ELF format these days (see manpage for readelf (1)), although A.OUT executables will still run on most linux systems. Also, "a.out" stands for "assembler output", this is a historical oddity, because early C compilers converted .c-files into .s-files (i.e. assembly files) and then called the assembler to create the executable.

    alex

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. What's wrong with my code here???
    By kahad in forum C Programming
    Replies: 16
    Last Post: 11-08-2006, 04:28 PM