answersLogoWhite

0

#include<iostream>

int main()

{

std::cout << "Hello world!" << std::endl;

return(0);

}

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Is C plus plus preprocessor software?

Sometimes, it is. Some implementations compile C++ code into C code, and then compile the C code.


How to embed HTML in c plus plus code?

As string-literal: const char head [] = "&lt;H1&gt;Example&lt;/H1&gt;";


Example of binaray operator in c plus plus?

+ is an example, one of many, of a binary operator in C or C++ a = b + c; // for usage example


What are the Example Output of Calculator Program in C plus plus?

example output of c++ calculator


What is the mean c plus plus in machine code?

It is used to distinguish between the C or C++


How do you Open a text file as C plus plus source code?

All C++ source code is is a text file with the .cpp extension. So if you save your code as *****.cpp then it is automatically C++ source code.


What is the Visual C plus plus 2008 Express Serial Code?

The Express edition of C++ does not require a serial code. It is free.


C plus plus code for payroll processing?

yihuy


What is the code to include a library in c plus plus?

#include &lt;libraryname&gt;


What are the steps in c plus plus?

Code, compile, link, run.


What is the differentiate of turbo c from turbo c plus plus?

Turbo C compiles c source. turbo c++ compiles c++ source code.


'How does a C plus plus code execute on a computer system' like does the computer has a library or such that can understand C plus language and translate it into binary?

By execution time, the code has already been translated into binary ("compiled"). However, the program may still rely on outside libraries (.dlls for example) that have also been pre-compiled.