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
| /* | |
| * Brian Chrzanowski | |
| * Mon May 06, 2019 23:41 | |
| * | |
| * This was a meme. A friend of mine thought about how you could do fizz-buzz | |
| * as a 15(ish) state machine. | |
| * | |
| * I think my thing is closer to a circular linked list with function pointers, | |
| * but that's whatever. | |
| * |
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
| /* | |
| * Brian Chrzanowski | |
| * Mon May 06, 2019 23:41 | |
| * | |
| * This was a meme. A friend of mine thought about how you could do fizz-buzz | |
| * as a 15(ish) state machine. | |
| * | |
| * I think my thing is closer to a circular linked list with function pointers, | |
| * but that's whatever. | |
| */ |
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
| /* | |
| * Brian Chrzanowski | |
| * Fri Jul 13, 2018 13:42 | |
| * | |
| * perform integrals over any function that returns and takes a double | |
| * compile : cc integral.c -lm | |
| */ | |
| #include <stdio.h> | |
| #include <math.h> |
NewerOlder