# C++

```bash
    root@edison:~# g++
    g++: fatal error: no input files
    compilation terminated.
    root@edison:~# vi helloworld.c
```

```cpp
#include <stdio.h>

void main (){
    printf("Hello World\n");
}
```

```bash
    root@edison:~# g++ -o helloworld helloworld.c
    root@edison:~# ./helloworld
    Hello World
    root@edison:~#
```
