C examples for Data Type:float
Solve the Evaluation of an expression with exponential numbers.
#include<stdio.h> int main (void){ float result; result = (3.31e-8 * 2.01e-7) / (7.16e-6 * 2.01e-8); printf("result = %e", result); return 0;//from w w w . j a v a2s.c o m }