.O ファイル拡張子
Compiled C Object File
| 開発元 | N/A |
| 人気度 |
3.8 | 75 票 |
Oファイルとは?
An O file is a compiled C program object. Some C compilers create O files during the executable (.EXE) creation process. O files themselves are typically not executable.
詳細情報
When compiling a C program, compilers first transform all the program's source code files into compiled object files. These compiled files typically use the .o or .OBJ extension. The compiler then links the compiled object files into an executable file.
Some examples of compilers that produce O files include GNU Compiler Collection (GCC)'s C and C++ compilers and Tiny C Compiler.
Oファイルの開き方
C and C++ compilers, such as GCC and Tiny C Compiler, often create, reference, and use O files during the program compilation process. For example, you can use Tiny C Compiler's -o command to link O files together and create an executable.