Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Code C - [expand] 1 2 3 4 5 6 7 8 9 void main(){ const Pi = 3.14159265; double tanVal = 0.0; tanVal = tan(pi / 2.0); while(1); }
Code C - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 unsigned char sTanVal[23] = ""; void main(){ const Pi = 3.14159265; double tanVal = 0.0; tanVal = tan(pi / 2.0); FloatToStr(tanVal, sTanVal); Lcd_Out(1,1,sTanVal); while(1); }