Answers for "arduino cast type"

1

casting arduino

int i;
float f;

f = 3.6; 
i = (int) f; // now i is 3
Posted by: Guest on April-24-2020

Browse Popular Code Answers by Language