...
Code Block | ||
---|---|---|
| ||
float calcPercentage(float value) {   return (float)(value * 0.1f); } void floatRoutine(void) { float value = 99.0f; long double percentage; percentage = calcPercentage(value); } |
...
Code Block | ||
---|---|---|
| ||
float calcPercentage(float value) { volatile float result; result = value * 0.1f;   return result; } void floatRoutine(void) { float value = 99.0f; long double percentage; percentage = calcPercentage(value); } |
...