C + + - Introduction to basic knowledge
1. Getting to know C++
1.1 first C + + program
To create a new project, select Create an empty project for C + +: Select project name and location: To add a C + + file to the source file:
# include <iostream>
using namespace std;
int main()
{
// nowrap
cout << "hello world" ;
// Line feed, line feed with < < endl
...
Posted by supermerc on Sun, 31 Oct 2021 04:02:47 +0100