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
| #include <stdio.h> | |
| #include <math.h> | |
| int main(void) { | |
| long double x = 0.0; | |
| long double phi = 0.61803398874989484820458683436563811772030917980576286213544862L; | |
| long double t = 1.0; | |
| for (;;) { | |
| int n = 0; |
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
| #include <stdint.h> | |
| class Foo { | |
| uint64_t& data; | |
| uint64_t* const pdata; | |
| public: | |
| Foo(uint64_t& d) : data(d), pdata(&d) { } | |
| inline uint64_t get(void) { return data; } | |
| inline uint64_t pget(void) { return *pdata; } |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <stdint.h> | |
| #define TABBITS 8 | |
| #if 0 | |
| extern uint32_t divfn(uint16_t i, uint16_t j); | |
| #else |
NewerOlder