viewing paste Unknown #21493 | C

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include <stdio.h>
 
int main() {
 
    float n1 = 0.3;
    float n2 = 0.3;
    float n3 = 0.3;
 
    float nn = n1+n2+n3;
 
    printf("number is: %f \n", nn);
 
}
 
Viewed 724 times, submitted by Guest.