Site menu

CodeCook.io

  • Languages
    • C
    • C++
    • CSS
    • Git
    • HTML
    • Java
    • JavaScript
    • jQuery
    • PHP
    • Python
    • Ruby
    • Scala

C++ - recipes

  • {{ item.name }}
  • Block comment
  • Class definition
  • Counter loop
  • Documentation comment
  • Hello world
  • Inline conditional
  • Object instantiation
  • Switch
C++ logo

C++

documentation url
http://www.cplusplus.com/doc/
language type
object oriented

C++ is a general purpose programming language. It has imperative, object-oriented and generic programming features, while also providing the facilities for low level memory manipulation.

It is designed with a bias for systems programming (e.g. embedded systems, operating system kernels), with performance, efficiency and flexibility of use as its design requirements. C++ has also been found useful in many other contexts, including desktop applications, servers (e.g. e-commerce, web search, SQL), performance critical applications (e.g. telephone switches, space probes) and entertainment software, such as video games. -wikipedia.org

<h2>Hello world</h2>

<pre> <code>

<h1>include <iostream></h1>

int main() { std::cout << "Hello, world!" << std::endl; } </code> </pre>

  • Blog
  • About
  • License