Show the basic structure of C++ programm by an example
Answers
Answered by
2
Answer:
For example, let's look at the implementation of the Hello World program:
#include <iostream> using namespace std; int main() { cout << "Hello World!" << endl; return 0; } Run.
#include <iostream> using namespace std;
int main() {}
cout << "Hello World" << endl; return 0;
Similar questions