- 1
Structure of c++
2 ответов
+ 3
Basic structure/syntax:
#include <iostream>
using namespace std;
int main() {
cout << "Hello World" << endl;
return 0;
}
Can you please look up at the C++ course:
https://www.sololearn.com/Course/CPlusPlus/
0
ty so much