C++文件-----之文件扩展名

在Window 10 系统下,使用code::block编辑并运行。

项目名称:my first.cpp

 #include <iostream>
     
    using namespace std;
    
    int main()
    {
        cout << "Hello word!"
             <<endl;
    
        return 0;
    }

分别生成 my first.cpp.exe
main.o
main.cpp
my first.cpp.cbp
my first.cpp.depend
exe : executable file 可执行文件,可移植可执行 (PE) 文件格式的文件,它可以加载到内存中,并由操作系统加载程序执行,是可在操作系统存储空间中浮动定位的可执行程序。
o:也就是.obj文件,所有的.obj文件链接成为最后的执行文件。
cpp:是C++语言中的源文件,是用来写程序实现代码的。
cbp:CodeBlock Project,这个软件专有的。
depend:也是这个软件专有

猜你喜欢

转载自blog.csdn.net/AsukaShin/article/details/85337066
今日推荐