This website works better with JavaScript
Home
Explore
Help
Sign In
cinaeco
/
qmk_firmware
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
4d116a04e9
Branches
Tags
master
qmk_firmware
/
tool
/
mbed
/
mbed-sdk
/
libraries
/
tests
/
benchmarks
/
float_math
/
main.cpp
main.cpp
106 B
History
Raw
1
2
3
4
5
6
7
8
#include "mbed.h"
volatile float w, x, y, z;
int main() {
while (1) {
z = x * y / w;
}
}