This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0000000000000000000000000000000000000000 | |
0000000000000000000000000000000000000000 | |
0000000000000000000000000000000000000000 | |
0000000000000000000000000000000000000000 | |
0000000000000000000000000000000000000000 | |
0000000000000000000000000040000000000000 | |
0000000000000000000000011111111000000000 | |
0000000000000000000000000000001000000000 | |
0000000000000000000000000000001000000000 | |
0000000000000000001100000000001000000000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
> : Move the pointer forward 1 slot | |
< : Move the pointer back 1 slot | |
+ : Add 1 to the current memory slot | |
- : Subtract 1 from the current memory slot | |
. : Print the ASCII character in the current memory slot | |
? : Print the number stored in the current memory slot | |
, : Save the ASCII character taken from the keyboard in the current memory slot | |
[ : Test if the current slot is not 0, otherwise enter the loop | |
] : Test if the current slot is 0, otherwise exit the loop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
The algorithims i have implemented are: | |
1. Bubble sort | |
2. Insertion sort | |
3. Selection sort | |
4. Comb sort | |
Youtube: www.rebrand.ly/eclip-coding | |
Github: gist.github.com/smvd/f95bdf6f49f18744289a2825d1f987ac | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
- Read code from files | |
- Show images | |
- Show json | |
- Show video | |
- Show audio | |
- Better debugging | |
*/ | |
#include <stdio.h> |
OlderNewer