How to write hello world in c++

Правка en1, от roshan22418, 2024-04-27 13:12:14

Write a Hello program in C++.

include

using namespace std;

int main(){ cout<<"hello world"; return 0; }

/*#include is a header file library that helps with input and output objects in C++ language.

Using namespace std use for the objects and variables from the standard library.

*/

История

 
 
 
 
Правки
 
 
  Rev. Язык Кто Когда Δ Комментарий
en3 Английский roshan22418 2024-04-27 13:15:07 83
en2 Английский roshan22418 2024-04-27 13:13:02 50 Tiny change: 'Write a Hello program in C++.\n=================\n\n#include' -> '\n#include'
en1 Английский roshan22418 2024-04-27 13:12:14 388 Initial revision (published)