https://github.com/frenchbread/learning
:books: Learning stuff
https://github.com/frenchbread/learning
Last synced: about 1 year ago
JSON representation
:books: Learning stuff
- Host: GitHub
- URL: https://github.com/frenchbread/learning
- Owner: frenchbread
- Created: 2014-12-05T03:23:09.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2017-06-17T12:01:31.000Z (almost 9 years ago)
- Last Synced: 2025-02-11T19:36:43.465Z (over 1 year ago)
- Language: C++
- Homepage:
- Size: 6.3 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Learning
* C
* C++
* Java
* JavaScript
* MongoDB
* Python
### Java
##### Running and compiling options:
* In IntelliJ IDEA.
* Compile and run:
```
$ javac HelloWorld.java
```
```
$ java HelloWorld
```
### C
##### Compiling:
```
$ gcc HelloWorld.c -o HelloWorld
```
```
$ ./HelloWorld
```
### Other
##### Installing `ncurses.h` header:
```
$ sudo apt-get install libncurses5-dev libncursesw5-dev
```