NUMCXX
0.13.20181108
Numerical library for small projects and teaching purposes
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
examples
00-cxx-basics
00-hello-world.cxx
Go to the documentation of this file.
1
24
// In order to use the input/output library, we need to
25
// include a header which describes its interface.
26
#include <iostream>
27
28
29
// Every C++ program starts with a function called main()
30
// Invoking the executable
31
int
main
()
32
{
33
// std::cout is the output stream of the program.
34
// The << operator writes data to it.
35
// std::endl outputs an end-of-line symbol.
36
std::cout <<
"Hello World"
<< std::endl;
37
}
main
int main()
Definition:
00-hello-world.cxx:31
Generated on Thu Nov 8 2018 22:52:26 for NUMCXX by
1.8.11