What does “#include ” do?

前端 未结 3 1899
囚心锁ツ
囚心锁ツ 2021-01-30 11:30

As I started learning basic C++, I\'ve always used the headings

#include 
using namespace std;

I want to question what is the

3条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-30 11:42

    That is a C++ standard library header file for input output streams. It includes functionality to read and write from streams. You only need to include it if you wish to use streams.

提交回复
热议问题