Solve the Evaluation of an expression with exponential numbers. - C Data Type

C examples for Data Type:float

Description

Solve the Evaluation of an expression with exponential numbers.

Demo Code

#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
}

Result


Related Tutorials